core: Partially fix TestContext2Apply_provisionerDestroyFail tests
These need their output strings updated for the new behavior that all resource instances recorded in state have a provider configuration associated, whereas before we only did it for non-default ones.
This commit is contained in:
parent
d13a932dac
commit
a709b9f07a
|
@ -5007,6 +5007,7 @@ func TestContext2Apply_provisionerDestroyFail(t *testing.T) {
|
||||||
checkStateString(t, state, `
|
checkStateString(t, state, `
|
||||||
aws_instance.foo:
|
aws_instance.foo:
|
||||||
ID = bar
|
ID = bar
|
||||||
|
provider = provider.aws
|
||||||
`)
|
`)
|
||||||
|
|
||||||
// Verify apply was invoked
|
// Verify apply was invoked
|
||||||
|
@ -5156,6 +5157,7 @@ func TestContext2Apply_provisionerDestroyFailContinueFail(t *testing.T) {
|
||||||
checkStateString(t, state, `
|
checkStateString(t, state, `
|
||||||
aws_instance.foo:
|
aws_instance.foo:
|
||||||
ID = bar
|
ID = bar
|
||||||
|
provider = provider.aws
|
||||||
`)
|
`)
|
||||||
|
|
||||||
// Verify apply was invoked
|
// Verify apply was invoked
|
||||||
|
|
Loading…
Reference in New Issue