From 3bd5dd85f40c7985856d4bccf9068c18d2ae3510 Mon Sep 17 00:00:00 2001 From: Mike Ingold Date: Thu, 5 Dec 2024 13:05:25 -0500 Subject: [PATCH] Fix units --- test/combinations.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/combinations.jl b/test/combinations.jl index 54543e8d..b8ee1f75 100644 --- a/test/combinations.jl +++ b/test/combinations.jl @@ -703,7 +703,7 @@ end r = ustrip(u"m", norm(to(p))) exp(-r^2) * u"A" end - solution = 2π * radius * exp(-radius^2) * u"m" + solution = 2π * radius * exp(-radius^2) * u"A*m" # Package and run tests testable = TestableGeometry(integrand, sphere, solution)