From bad0f7fafd9716e2855a52c13eb7b0e97d6e0aad Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Wed, 26 Sep 2018 11:47:50 -0700 Subject: [PATCH] core: Fix TestContext2Apply_targetedWithTaintedInState Tainted objects now also remember which provider they belong to (via the resource state they are attached to) and so the stringified state output here is slightly different. --- terraform/context_apply_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/context_apply_test.go b/terraform/context_apply_test.go index e30e32ee18..ec82eee453 100644 --- a/terraform/context_apply_test.go +++ b/terraform/context_apply_test.go @@ -8827,6 +8827,7 @@ aws_instance.iambeingadded: provider = provider.aws aws_instance.ifailedprovisioners: (tainted) ID = ifailedprovisioners + provider = provider.aws `) if actual != expected { t.Fatalf("expected state: \n%s\ngot: \n%s", expected, actual)