Skip to content

Commit

Permalink
Fix output argument order
Browse files Browse the repository at this point in the history
  • Loading branch information
imalsogreg committed Dec 17, 2020
1 parent 7c418ed commit ddb0559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ func TestCLI_ParseFlags(t *testing.T) {
out := gatedio.NewByteBuffer()
cli := NewCLI(out, out)

a, _, _, _, errOnMissingKey, err := cli.ParseFlags(tc.f)
a, _, _, errOnMissingKey, _, err := cli.ParseFlags(tc.f)
log.Printf("[INFO] config parsed errOnMissingKey: %v", errOnMissingKey) //temporary
if (err != nil) != tc.err {
t.Fatal(err)
Expand Down

0 comments on commit ddb0559

Please sign in to comment.