From b4d98765bd19f24e37e65833d08f27e0de6970bb Mon Sep 17 00:00:00 2001 From: Mr Rogers Date: Wed, 19 Feb 2014 16:38:51 -0500 Subject: [PATCH] rollback inconsequential changes --- app_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app_test.go b/app_test.go index b5c20f5..4e94f9e 100644 --- a/app_test.go +++ b/app_test.go @@ -87,7 +87,7 @@ var commandAppTests = []struct { func TestApp_Command(t *testing.T) { app := cli.NewApp() - fooCommand := cli.Command{Name: "foobar", ShortName: "f", Description: "Foobar is nuts",} + fooCommand := cli.Command{Name: "foobar", ShortName: "f"} batCommand := cli.Command{Name: "batbaz", ShortName: "b"} app.Commands = []cli.Command{ fooCommand, @@ -155,7 +155,6 @@ func TestApp_ParseSliceFlags(t *testing.T) { firstArg = c.Args().First() }, } - app.Commands = []cli.Command{command} app.Run([]string{"", "cmd", "my-arg", "-p", "22", "-p", "80", "-ip", "8.8.8.8", "-ip", "8.8.4.4"})