From 0af032e82b1d7a9d4effd3df043d953c82f1969e Mon Sep 17 00:00:00 2001 From: Michael Ingold Date: Tue, 12 Nov 2024 19:41:35 -0500 Subject: [PATCH] Explicit import of non-exports --- test/utils.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/utils.jl b/test/utils.jl index 3441f247..245ad016 100644 --- a/test/utils.jl +++ b/test/utils.jl @@ -1,5 +1,6 @@ @testitem "Utilities" setup=[Setup] begin using LinearAlgebra: norm + using MeshIntegrals: _units, _zeros, _ones # _KVector v = Meshes.Vec(3, 4) @@ -7,7 +8,7 @@ # _units p = Point(1.0u"cm", 2.0u"mm", 3.0u"m") - @test MeshIntegrals._units(p) == u"m" + @test _units(p) == u"m" # _zeros @test _zeros(2) == (0.0, 0.0)