From 22225bc5a03a75f8ee2528a3ad6099150516d317 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Tue, 26 Mar 2024 11:40:39 +0100 Subject: [PATCH] relax test tolerance --- test/tst_io.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tst_io.jl b/test/tst_io.jl index a91cc0e8..fca72cd7 100644 --- a/test/tst_io.jl +++ b/test/tst_io.jl @@ -69,7 +69,7 @@ sombrero(x, y) = 30sinc(√(x^2 + y^2) / π) GC.enable(false) stats = @timed string(p; color = true) # repeated ! @test stats.bytes / 1e3 < 500 # ~ 356kB on 1.10 - @test stats.time * 1e3 < 0.6 # ~ 0.3ms on 1.10 + @test stats.time * 1e3 < 0.7 # ~ 0.3ms on 1.10 GC.enable(true) end end