diff options
author | Eduardo Julian | 2016-12-01 15:53:29 -0400 |
---|---|---|
committer | Eduardo Julian | 2016-12-01 15:53:29 -0400 |
commit | 5ac6c8480c5d5866d55b18a5674c96acc3e3f427 (patch) | |
tree | 4c84aa4ee7f0abb77ba382da3683dc1c61b3dd3f /stdlib/source | |
parent | ac68b9bdf7fb8195e8c3862285efa19e59505c2a (diff) |
- Logging test errors with one less newline afterwards.
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 |