From b8c310c61e3d95f25f56fe08f6c6ac4eb81291e6 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 27 Jan 2017 21:24:58 -0800 Subject: [PATCH] command: update test failure to correct message --- command/plan_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/plan_test.go b/command/plan_test.go index 426cac825..3f0e2cf26 100644 --- a/command/plan_test.go +++ b/command/plan_test.go @@ -575,7 +575,7 @@ func TestPlan_validate(t *testing.T) { } actual := ui.ErrorWriter.String() - if !strings.Contains(actual, "can't reference") { + if !strings.Contains(actual, "cannot be computed") { t.Fatalf("bad: %s", actual) } }