From c618132085ff6cd9455ec4ec7bd187f65b6ac44d Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Thu, 13 Aug 2015 10:11:12 -0500 Subject: [PATCH] tests: fix missed test update from last merge --- terraform/context_plan_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/context_plan_test.go b/terraform/context_plan_test.go index 240fd24dd..50f2bb471 100644 --- a/terraform/context_plan_test.go +++ b/terraform/context_plan_test.go @@ -675,7 +675,7 @@ func TestContext2Plan_preventDestroy_destroyPlan(t *testing.T) { plan, err := ctx.Plan() - expectedErr := "aws_instance.foo: plan would destroy" + expectedErr := "aws_instance.foo: the plan would destroy" if !strings.Contains(fmt.Sprintf("%s", err), expectedErr) { t.Fatalf("expected err would contain %q\nerr: %s\nplan: %s", expectedErr, err, plan)