diff options
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/test.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/test.lux b/stdlib/source/lux/test.lux index e7a527dea..8ff397d7a 100644 --- a/stdlib/source/lux/test.lux +++ b/stdlib/source/lux/test.lux @@ -57,7 +57,7 @@ #let [post (io;run (System.currentTimeMillis []))]] (case outcome (#;Left error) - (wrap (log! (format "Error: " (:: text;Codec<Text,Text> encode description) " @ " module "\n" error "\n\n"))) + (wrap (log! (format "Error: " (:: text;Codec<Text,Text> encode description) " @ " module "\n" error "\n"))) _ (exec (log! (format "Success: " (:: text;Codec<Text,Text> encode description) " @ " module |