From 287bd30ec0a0c25d3a7994ede17fc2d8166564f9 Mon Sep 17 00:00:00 2001 From: Thomas Kemmer Date: Wed, 22 Nov 2023 09:40:08 +0100 Subject: [PATCH] Tests: fix readback testutil --- test/testutils.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testutils.jl b/test/testutils.jl index cb0667b2..8efadb7e 100644 --- a/test/testutils.jl +++ b/test/testutils.jl @@ -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)