diff --git a/context.go b/context.go index ce83a14..9473dfa 100644 --- a/context.go +++ b/context.go @@ -2,8 +2,8 @@ package cli import ( "flag" - "strings" "strconv" + "strings" ) // Context is a type that is passed through to diff --git a/flag_test.go b/flag_test.go index 04c0952..e74c717 100644 --- a/flag_test.go +++ b/flag_test.go @@ -65,7 +65,6 @@ func TestIntFlagHelpOutput(t *testing.T) { } } - func TestParseMultiString(t *testing.T) { (&cli.App{ Flags: []cli.Flag{ @@ -112,7 +111,7 @@ func TestParseMultiInt(t *testing.T) { } a.Run([]string{"run", "--serve", "10"}) } - + func TestParseMultiBool(t *testing.T) { a := cli.App{ Flags: []cli.Flag{ @@ -129,5 +128,3 @@ func TestParseMultiBool(t *testing.T) { } a.Run([]string{"run", "--serve"}) } - -