core: Fix TestContext2Apply_idAttr

The "num" attribute is marked as being a number in the provider schema, so
we are now required to make it actually convertible to number.
This commit is contained in:
Martin Atkins 2018-09-13 10:11:47 -07:00
parent 934dd8f710
commit 5f344c9590
1 changed files with 1 additions and 1 deletions

View File

@ -7057,7 +7057,7 @@ func TestContext2Apply_idAttr(t *testing.T) {
return &InstanceDiff{
Attributes: map[string]*ResourceAttrDiff{
"num": &ResourceAttrDiff{
New: "bar",
New: "42",
},
},
}, nil