fix `go vet` warning

command_test.go:342:3 value declared but not used

Signed-off-by: Valentin Rothberg <vrothberg@suse.com>
main
Valentin Rothberg 6 years ago
parent c23dfba701
commit 3e5a935ed3

@ -339,7 +339,6 @@ func TestCommandSkipFlagParsing(t *testing.T) {
} }
for _, c := range cases { for _, c := range cases {
value := ""
args := []string{} args := []string{}
app := &App{ app := &App{
Commands: []Command{ Commands: []Command{
@ -351,7 +350,6 @@ func TestCommandSkipFlagParsing(t *testing.T) {
}, },
Action: func(c *Context) { Action: func(c *Context) {
fmt.Printf("%+v\n", c.String("flag")) fmt.Printf("%+v\n", c.String("flag"))
value = c.String("flag")
args = c.Args() args = c.Args()
}, },
}, },

Loading…
Cancel
Save