Skip to content

Commit

Permalink
Fix 4D Box test
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeingold committed Oct 4, 2024
1 parent 765a2d6 commit 75645cd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/combinations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,11 @@ end
end

@testitem "Meshes.Box 4D" setup=[Setup] begin
box = Box(Point(zeros(4)...), Point(ones(4)...))
a = zero(Float64)
b = zero(Float64)
box = Box(Point(a, a, a, a), Point(b, b, b, b))

f = p -> one(FP)
f = p -> one(Float64)

# Test for currently-unsupported >3D differentials
@test integral(f, box)1.0u"m^4" broken=true
Expand Down

0 comments on commit 75645cd

Please sign in to comment.