aboutsummaryrefslogtreecommitdiff
path: root/lib/os/exec/exec_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/os/exec/exec_test.go')
-rw-r--r--lib/os/exec/exec_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/os/exec/exec_test.go b/lib/os/exec/exec_test.go
index ad0e82b0..90771dbb 100644
--- a/lib/os/exec/exec_test.go
+++ b/lib/os/exec/exec_test.go
@@ -46,7 +46,7 @@ func TestParseCommandArg(t *testing.T) {
for _, c := range cases {
t.Logf(c.in)
gotCmd, gotArgs := ParseCommandArgs(c.in)
- test.Assert(t, "cmd", c.expCmd, gotCmd, true)
- test.Assert(t, "args", c.expArgs, gotArgs, true)
+ test.Assert(t, "cmd", c.expCmd, gotCmd)
+ test.Assert(t, "args", c.expArgs, gotArgs)
}
}