Skip to content

Commit 90a79b9

Browse files
committed
Print a newline before displaying test output
1 parent e9dd971 commit 90a79b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ fn run_tests_console_(opts: &test_opts, tests: &test_desc[],
103103
let out = io::stdout();
104104

105105
let total = ivec::len(filtered_tests);
106-
out.write_line(#fmt("running %u tests", total));
106+
out.write_line(#fmt("\nrunning %u tests", total));
107107

108108
let futures = ~[];
109109

0 commit comments

Comments
 (0)