running go fmt

main
Josh Mervine 10 years ago
parent 7ca86444e8
commit 8f55ca83ff

@ -1,8 +1,8 @@
package cli_test
import (
"fmt"
"."
"fmt"
"os"
"testing"
)

@ -1,8 +1,8 @@
package cli_test
import (
"flag"
"."
"flag"
"testing"
)
@ -14,12 +14,12 @@ func TestCommandDoNotIgnoreFlags(t *testing.T) {
c := cli.NewContext(app, set, set)
command := cli.Command {
command := cli.Command{
Name: "test-cmd",
ShortName: "tc",
Usage: "this is for testing",
Description: "testing",
Action: func(_ *cli.Context) { },
Action: func(_ *cli.Context) {},
}
err := command.Run(c)
@ -34,12 +34,12 @@ func TestCommandIgnoreFlags(t *testing.T) {
c := cli.NewContext(app, set, set)
command := cli.Command {
command := cli.Command{
Name: "test-cmd",
ShortName: "tc",
Usage: "this is for testing",
Description: "testing",
Action: func(_ *cli.Context) { },
Action: func(_ *cli.Context) {},
SkipFlagParsing: true,
}
err := command.Run(c)

@ -1,8 +1,8 @@
package cli_test
import (
"flag"
"."
"flag"
"testing"
)

Loading…
Cancel
Save