From acfb4357a9663c148ac9e8b68b35ac6f03d9fc97 Mon Sep 17 00:00:00 2001 From: Michael Ingold Date: Fri, 17 Jan 2025 00:16:25 -0500 Subject: [PATCH] Apply suggestions from code review Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- test/combinations.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/combinations.jl b/test/combinations.jl index c463e0cc..aebf50ad 100644 --- a/test/combinations.jl +++ b/test/combinations.jl @@ -687,7 +687,7 @@ end x, y, z = ustrip.(u"m", to(p)) (x + 2y + 3z) * u"A" end - solution = (1//4) * u"A*m^3" + solution = (1 // 4) * u"A*m^3" # Package and run tests testable = TestableGeometry(integrand, tetrahedron, solution) @@ -721,7 +721,7 @@ end x, y, z = ustrip.(u"m", to(p)) (x + 2y + 3z) * u"A" end - solution = (1//2) * u"A*m^2" + solution = (1 // 2) * u"A*m^2" # Package and run tests testable = TestableGeometry(integrand, triangle, solution)