From 365efae5841e8d37f7075c698fd8e557c5aa22bc Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 12 Aug 2013 09:19:24 -0700 Subject: [PATCH] Fix packer test --- packer_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packer_test.go b/packer_test.go index 5a08f8431..298c69bb1 100644 --- a/packer_test.go +++ b/packer_test.go @@ -22,7 +22,7 @@ func TestExtractMachineReadable(t *testing.T) { } // Yes - args = []string{"foo", "--machine-readable", "baz"} + args = []string{"foo", "-machine-readable", "baz"} result, mr = extractMachineReadable(args) expected = []string{"foo", "baz"} if !reflect.DeepEqual(result, expected) {