helper and terraform interpolate test update

This commit is contained in:
clint shryock 2016-06-10 10:07:17 -05:00
parent fad26ec59e
commit 7d71b8cc3c
2 changed files with 3 additions and 3 deletions

View File

@ -2169,7 +2169,7 @@ func TestSchemaMap_Diff(t *testing.T) {
State: &terraform.InstanceState{ State: &terraform.InstanceState{
Attributes: map[string]string{ Attributes: map[string]string{
"tags.#": "0", "tags.%": "0",
}, },
}, },

View File

@ -469,7 +469,7 @@ func getInterpolaterFixture(t *testing.T) *Interpolater {
"name_servers.3": "ns-601.awsdns-11.net", "name_servers.3": "ns-601.awsdns-11.net",
"listeners.#": "1", "listeners.#": "1",
"listeners.0": "red", "listeners.0": "red",
"tags.#": "1", "tags.%": "1",
"tags.Name": "reindeer", "tags.Name": "reindeer",
"nothing.#": "0", "nothing.#": "0",
}, },
@ -490,7 +490,7 @@ func getInterpolaterFixture(t *testing.T) *Interpolater {
"listeners.0": "blue", "listeners.0": "blue",
"special.#": "1", "special.#": "1",
"special.0": "extra", "special.0": "extra",
"tags.#": "1", "tags.%": "1",
"tags.Name": "white-hart", "tags.Name": "white-hart",
"nothing.#": "0", "nothing.#": "0",
}, },