From 9062bfda8918fbfaa870846225b4382a52b36bb3 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 6 Mar 2015 15:07:08 -0800 Subject: [PATCH] command/meta: fix test --- command/meta_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/meta_test.go b/command/meta_test.go index 4b1ae03f8..b0c4960f0 100644 --- a/command/meta_test.go +++ b/command/meta_test.go @@ -65,7 +65,7 @@ func TestMetaInputMode(t *testing.T) { t.Fatalf("err: %s", err) } - if m.InputMode() != terraform.InputModeStd { + if m.InputMode() != terraform.InputModeStd|terraform.InputModeVarUnset { t.Fatalf("bad: %#v", m.InputMode()) } }