diff --git a/test/combinations.jl b/test/combinations.jl index a7f76416..c6b9daba 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) @@ -726,7 +726,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)