helper/schema: verify that sets remove duplicates

This commit is contained in:
Mitchell Hashimoto 2014-08-20 17:52:01 -07:00
parent 56dde5c0c1
commit 9fe21f0423
1 changed files with 2 additions and 1 deletions

View File

@ -1395,9 +1395,10 @@ func TestResourceDataState(t *testing.T) {
State: &terraform.ResourceState{
Attributes: map[string]string{
"ports.#": "2",
"ports.#": "3",
"ports.0": "100",
"ports.1": "80",
"ports.2": "80",
},
},