From 0e841c8ebfaac8ff949eb4b89450e33e9a8f04f8 Mon Sep 17 00:00:00 2001 From: Adriano Meligrana <68152031+Tortar@users.noreply.github.com> Date: Thu, 28 Nov 2024 23:12:09 +0100 Subject: [PATCH] Update one_run_deterministic.jl --- test/deterministic/one_run_deterministic.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/deterministic/one_run_deterministic.jl b/test/deterministic/one_run_deterministic.jl index 2c744dc..373e73f 100644 --- a/test/deterministic/one_run_deterministic.jl +++ b/test/deterministic/one_run_deterministic.jl @@ -20,7 +20,7 @@ # loop over the data fields and compare them for field in fieldnames(typeof(data)) - @test isapprox(getproperty(data, field), getproperty(data2, field), rtol = 0.001) - @test isapprox(getproperty(data2, field), getproperty(data3, field), rtol = 0.001) + @test isapprox(getproperty(data, field), getproperty(data2, field), rtol = 0.00001) + @test isapprox(getproperty(data2, field), getproperty(data3, field), rtol = 0.00001) end end