Skip to content

Commit 6a9d00c

Browse files
committed
Fix clear_status
1 parent fe33f88 commit 6a9d00c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ParallelTestRunner.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,8 +591,8 @@ function runtests(mod::Module, ARGS; test_filter = Returns(true), RecordType = T
591591
function clear_status()
592592
if status_lines_visible[] > 0
593593
for i in 1:status_lines_visible[]-1
594-
print(io_ctx.stdout, "\033[1A") # Move up one line
595594
print(io_ctx.stdout, "\033[2K") # Clear entire line
595+
print(io_ctx.stdout, "\033[1A") # Move up one line
596596
end
597597
print(io_ctx.stdout, "\r") # Move to start of line
598598
status_lines_visible[] = 0

0 commit comments

Comments
 (0)