From df11b64cc8fd5bdc24fed44c6e5b55855e3ae4fe Mon Sep 17 00:00:00 2001 From: CompatHelper Julia Date: Thu, 11 Dec 2025 01:13:07 +0000 Subject: [PATCH 1/3] CompatHelper: bump compat for Meshes to 0.56 for package test, (keep existing compat) --- test/Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Project.toml b/test/Project.toml index 3e97d1c9..49935b22 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -18,7 +18,7 @@ CoordRefSystems = "0.16, 0.17, 0.18, 0.19" Enzyme = "0.13.47" ExplicitImports = "1.6.0" LinearAlgebra = "1" -Meshes = "0.53, 0.54, 0.55" +Meshes = "0.53, 0.54, 0.55, 0.56" SpecialFunctions = "2" StaticArrays = "1" TestItemRunner = "1" From dcc2652d3eb492dad70d9245ce46147799cb74ef Mon Sep 17 00:00:00 2001 From: Joshua Lampert Date: Thu, 11 Dec 2025 11:28:37 +0100 Subject: [PATCH 2/3] fix test --- test/combinations.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/combinations.jl b/test/combinations.jl index 40f65d4d..6f66eb2d 100644 --- a/test/combinations.jl +++ b/test/combinations.jl @@ -504,7 +504,7 @@ end # Geometry a = π box = Box(Point(0, 0, 0), Point(a, a, a)) - hexahedron = Hexahedron(discretize(box).vertices...) + hexahedron = Hexahedron(vertices(discretize(box))...) # Integrand & Solution function integrand(p::Meshes.Point) From fdd0f61276b4adeaba9188a246bb6a2763bc4207 Mon Sep 17 00:00:00 2001 From: Joshua Lampert Date: Thu, 11 Dec 2025 11:30:49 +0100 Subject: [PATCH 3/3] use convert --- test/combinations.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/combinations.jl b/test/combinations.jl index 6f66eb2d..65ace86f 100644 --- a/test/combinations.jl +++ b/test/combinations.jl @@ -504,7 +504,7 @@ end # Geometry a = π box = Box(Point(0, 0, 0), Point(a, a, a)) - hexahedron = Hexahedron(vertices(discretize(box))...) + hexahedron = convert(Hexahedron, box) # Integrand & Solution function integrand(p::Meshes.Point)