summaryrefslogtreecommitdiff
path: root/tests/misc/nice-fail
diff options
context:
space:
mode:
Diffstat (limited to 'tests/misc/nice-fail')
-rwxr-xr-xtests/misc/nice-fail2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/nice-fail b/tests/misc/nice-fail
index da85eb2b7..7a1bbe8ec 100755
--- a/tests/misc/nice-fail
+++ b/tests/misc/nice-fail
@@ -39,7 +39,7 @@ nice sh -c 'exit 2' # exit status propagation
test $? = 2 || fail=2
nice . # invalid command
test $? = 126 || fail=1
-nice ... # no such command
+nice no_such # no such command
test $? = 127 || fail=1
Exit $fail