We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7055b9 commit 8402d3aCopy full SHA for 8402d3a
test/tst_io.jl
@@ -69,7 +69,7 @@ sombrero(x, y) = 30sinc(√(x^2 + y^2) / π)
69
GC.enable(false)
70
stats = @timed string(p; color = true) # repeated !
71
@test stats.bytes / 1e3 < 500 # ~ 292kB on 1.11
72
- @test stats.time * 1e3 < margin * 0.8 # ~ 0.3ms on 1.11
+ @test stats.time * 1e3 < 0.8 # ~ 0.3ms on 1.11
73
GC.enable(true)
74
end
75
@@ -81,7 +81,7 @@ sombrero(x, y) = 30sinc(√(x^2 + y^2) / π)
81
82
83
@test stats.bytes / 1e3 < 160 # ~ 123kB on 1.11
84
- @test stats.time * 1e3 < margin * 0.5 # ~ 0.2ms on 1.11
+ @test stats.time * 1e3 < 0.5 # ~ 0.2ms on 1.11
85
86
87
0 commit comments