Print a newline before displaying test output

This commit is contained in:
Brian Anderson 2011-07-27 18:12:29 -07:00
parent e9dd971129
commit 90a79b9951

View File

@ -103,7 +103,7 @@ fn run_tests_console_(opts: &test_opts, tests: &test_desc[],
let out = io::stdout();
let total = ivec::len(filtered_tests);
out.write_line(#fmt("running %u tests", total));
out.write_line(#fmt("\nrunning %u tests", total));
let futures = ~[];