diff --git a/command_test.go b/command_test.go index 85b0a9c7..b0b6aea6 100644 --- a/command_test.go +++ b/command_test.go @@ -38,12 +38,6 @@ func checkStringContains(t *testing.T, got, expected string) { } } -func checkStringOmits(t *testing.T, got, expected string) { - if strings.Contains(got, expected) { - t.Errorf("Expected to not contain: \n %v\nGot: %v", expected, got) - } -} - const onetwo = "one two" func TestSingleCommand(t *testing.T) {