From 73e88630a58e1a0cc9800addd77588980b9c0b6f Mon Sep 17 00:00:00 2001 From: Jared Forsyth Date: Mon, 18 Nov 2013 16:37:59 -0700 Subject: [PATCH] fmt --- context.go | 2 +- flag_test.go | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) 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"}) } - -