From 39c78fbe06176445f2b0dd4693da4239ac4d8103 Mon Sep 17 00:00:00 2001 From: Matt Bell Date: Sun, 2 Nov 2014 17:04:15 -0800 Subject: [PATCH] commands: Fixed tests --- commands/command_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/command_test.go b/commands/command_test.go index e97391a0c..c41f1ce96 100644 --- a/commands/command_test.go +++ b/commands/command_test.go @@ -105,7 +105,7 @@ func TestRegistration(t *testing.T) { Run: noop, } - res := cmdB.Call(NewRequest([]string{"a"}, nil, nil, nil, nil)) + res := cmdB.Call(NewRequest([]string{"a"}, nil, nil, nil)) if res.Error() == nil { t.Error("Should have failed (option name collision)") }