style(test): Add spacing in division operator for consistency

Changes to test/test_elasticity_1d.jl:
- Changed sqrt(3)/2 to sqrt(3) / 2 (added spaces around /)
- Improves code readability and follows Julia style conventions
- No functional change, formatting only
This commit is contained in:
Jukka Aho
2025-11-09 21:03:59 +02:00
parent a332d79736
commit 358f7701d4
+1 -1
View File
@@ -26,6 +26,6 @@ detJ = element(xi, time, Val{:detJ})
J = element(xi, time, Val{:Jacobian})
# gradu = element("displacement", xi, time, Val{:Grad})
@debug("1d seg2 info", xi, time, detJ, J)
@test isapprox(detJ, sqrt(3)/2)
@test isapprox(detJ, sqrt(3) / 2)
# Jacobian is 3×1 (physical_dim × parametric_dim) for 1D element in 3D
@test isapprox(J, [0.5; 0.5; 0.5]) # column vector