From 5cc044086c0e7332bf8b5c2adb98d3419c675aec Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sat, 8 Apr 2017 19:49:37 -0400 Subject: - Improved the way the message is shown when the tests are done running. --- stdlib/source/lux/test.lux | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stdlib/source/lux/test.lux b/stdlib/source/lux/test.lux index 94a77d8cf..8e854d501 100644 --- a/stdlib/source/lux/test.lux +++ b/stdlib/source/lux/test.lux @@ -292,12 +292,12 @@ (exec (log! ($_ _appendT_ "Test-suite finished." "\n" - (_%i_ (nat-to-int (~ g!_))) " tests failed." - "\n" (_%i_ (nat-to-int (~ g!accum))) " out of " (~ (|> num-tests nat-to-int _%i_ ast;text)) - " tests passed.")) + " tests passed." + "\n" + (_%i_ (nat-to-int (~ g!_))) " tests failed.")) (promise;future (if (n.> +0 (~ g!_)) ;;die ;;exit)))) -- cgit v1.2.3