From d8d6a870f07e7558a65225d5aef6760139ef0183 Mon Sep 17 00:00:00 2001 From: Mike Ingold Date: Thu, 5 Dec 2024 15:13:52 -0500 Subject: [PATCH] Bugfix --- test/utils.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils.jl b/test/utils.jl index 87ef390f..448d38de 100644 --- a/test/utils.jl +++ b/test/utils.jl @@ -31,7 +31,7 @@ end @test FiniteDifference().ε ≈ 1e-6 # Test jacobian with wrong number of parametric coordinates - box = Box(Point(0, 0), Point(a, a)) + box = Box(Point(0, 0), Point(1, 1)) @test_throws ArgumentError jacobian(box, zeros(3)) end