From 90ecd17bd536cdcb16ea1293b4aff4e247679215 Mon Sep 17 00:00:00 2001 From: Pam Selle <204372+pselle@users.noreply.github.com> Date: Wed, 23 Oct 2019 14:04:39 -0400 Subject: [PATCH] Fix err test --- terraform/context_apply_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/context_apply_test.go b/terraform/context_apply_test.go index e4f9aafee6..c389812c13 100644 --- a/terraform/context_apply_test.go +++ b/terraform/context_apply_test.go @@ -2079,7 +2079,7 @@ func TestContext2Apply_provisionerDestroyForEach(t *testing.T) { if diags == nil { t.Fatal("should error") } - if !strings.Contains(diags.Err().Error(), "each.value is unknown and cannot be used in this context") { + if !strings.Contains(diags.Err().Error(), "each.value cannot be used in this context") { t.Fatal("unexpected error:", diags.Err()) } }