Skip to content

Commit

Permalink
Update one_run_deterministic.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
Tortar authored Nov 28, 2024
1 parent d825fb0 commit 0e841c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/deterministic/one_run_deterministic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0e841c8

Please sign in to comment.