Skip to content

Commit

Permalink
update test tolerances
Browse files Browse the repository at this point in the history
  • Loading branch information
jlchan committed May 10, 2024
1 parent fa6c6b8 commit b19c525
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/cut_mesh_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ using StartUpDG: PathIntersections
srd(e) # in-place application of SRD functor

# test exactness
@test norm(e .- ecopy) < 1e3 * eps()
@test norm(u .- ucopy) < 1e3 * eps()
@test norm(e .- ecopy) < 1e2 * length(e) * eps()
@test norm(u .- ucopy) < 1e2 * length(u) * eps()
end
end

Expand Down

0 comments on commit b19c525

Please sign in to comment.