Skip to content

Commit e50a028

Browse files
authored
small printing fix when running test suite (#357)
1 parent e0b165a commit e50a028

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ using Test
1717
Random.seed!(1) # Set seed that all testsets should reset to.
1818

1919
function include_test(path)
20-
print("Testing $path:\t") # print so TravisCI doesn't timeout due to no output
20+
println("Testing $path:") # print so TravisCI doesn't timeout due to no output
2121
@time include(path) # show basic timing, (this will print a newline at end)
2222
end
2323

0 commit comments

Comments
 (0)