From 806cdc2890440d6fd032bdf0919a4172bc422bec Mon Sep 17 00:00:00 2001 From: Jeremy Saenz Date: Wed, 20 Nov 2013 17:26:27 -0800 Subject: [PATCH] removed dead test --- flag_test.go | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/flag_test.go b/flag_test.go index aa8fdc6..038f458 100644 --- a/flag_test.go +++ b/flag_test.go @@ -79,21 +79,6 @@ func TestParseMultiString(t *testing.T) { } }, }).Run([]string{"run", "-s", "10"}) - - /*(&cli.App{ - Flags: []cli.Flag{ - cli.StringFlag{Name: "serve, s"}, - }, - Action: func(ctx *cli.Context) { - if ctx.String("serve") != "10" { - t.Errorf("main name not set") - } - if ctx.String("s") != "10" { - t.Errorf("short name not set") - } - }, - }).Run([]string{"run", "--serve", "10"}) - */ } func TestParseMultiInt(t *testing.T) {