fix
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
2024-03-11 16:07:15 +01:00
parent 114bdc5ce9
commit 7d80f4d56b
5 changed files with 17 additions and 25 deletions

View File

@ -20,7 +20,7 @@ func TestParseCmdArgs(t *testing.T) {
}
for _, test := range tests {
ok, parsed := parseCmdArgs(test.input, false)
ok, parsed := parseCmdArgs(test.input)
if ok != test.shouldParse {
t.Fatalf("[%s] should not parse", strings.Join(test.input, " "))
}