aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/interactive.fish
diff options
context:
space:
mode:
Diffstat (limited to 'tests/interactive.fish')
-rw-r--r--tests/interactive.fish3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/interactive.fish b/tests/interactive.fish
index 03ebacf7..c3c7b609 100644
--- a/tests/interactive.fish
+++ b/tests/interactive.fish
@@ -74,6 +74,7 @@ if test $failed -eq 0
say green "All tests completed successfully"
exit 0
else
- say red "$failed test"(test $failed -eq 1; or echo s)" failed"
+ set plural (test $failed -eq 1; or echo s)
+ say red "$failed test$plural failed"
exit 1
end