From f7964194eb16c86a9a0792d90413dcb022980f6a Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 13 Mar 2017 16:41:33 -0700 Subject: [PATCH] command: fix odd formatting that snuck in --- command/apply_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/command/apply_test.go b/command/apply_test.go index 65d341293..01c230326 100644 --- a/command/apply_test.go +++ b/command/apply_test.go @@ -603,7 +603,8 @@ func TestApply_plan_backup(t *testing.T) { if err != nil { t.Fatal(err) } - args := []string{"-state-out", statePath, + args := []string{ + "-state-out", statePath, "-backup", backupPath, planPath, }