Skip to content

Commit

Permalink
Tests: fix readback testutil
Browse files Browse the repository at this point in the history
  • Loading branch information
tkemmer committed Nov 22, 2023
1 parent 436d145 commit 1b90594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testutils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function readback(f::Function)
try
f(fh)
seek(fh, 0)
return join(readlines(fh), "\n")
return strip(join(readlines(fh), "\n"))
finally
close(fh)
rm(fname)
Expand Down

0 comments on commit 1b90594

Please sign in to comment.