From 6e91dded25d73176bf7f60b40dd7aa1f0bf9be8d Mon Sep 17 00:00:00 2001 From: Ben Gadbois Date: Tue, 25 Oct 2016 18:28:26 -0700 Subject: [PATCH] Make gofmt -s pass (#355) --- command_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/command_test.go b/command_test.go index 050e6083..7947f6c4 100644 --- a/command_test.go +++ b/command_test.go @@ -146,8 +146,7 @@ func TestInitHelpFlagMergesFlags(t *testing.T) { cmd.initHelpFlag() actual := cmd.Flags().Lookup("help").Usage if actual != usage { - t.Fatalf("Expected the help flag from the base command with usage '%s', " + - "but got the default with usage '%s'", usage, actual) + t.Fatalf("Expected the help flag from the base command with usage '%s', but got the default with usage '%s'", usage, actual) } }