From 828d70c562cb2e05b36814bb1cb1c0866fb974e0 Mon Sep 17 00:00:00 2001 From: umarcor Date: Tue, 30 Aug 2022 19:35:15 +0200 Subject: [PATCH] args_test: fix command passed to TestNoArgs_WithValid_WithInvalidArgs --- args_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/args_test.go b/args_test.go index af61085a5..e84e8d100 100644 --- a/args_test.go +++ b/args_test.go @@ -115,7 +115,7 @@ func TestNoArgs_WithValid_WithArgs(t *testing.T) { func TestNoArgs_WithValid_WithInvalidArgs(t *testing.T) { c := getCommand(NoArgs, true) - _, err := executeCommand(c, "one") + _, err := executeCommand(c, "a") noArgsWithArgs(err, t) }