diff --git a/pkg/mods/math/math_test.elvts b/pkg/mods/math/math_test.elvts index af7158431..117521f09 100644 --- a/pkg/mods/math/math_test.elvts +++ b/pkg/mods/math/math_test.elvts @@ -442,10 +442,10 @@ Exception: arity mismatch: arguments must be 1 or more values, but is 0 values ~> math:atan2 0 0 ▶ (num 0.0) -~> math:atan2 1 1 -▶ (num 0.7853981633974483) -~> math:atan2 -1 -1 -▶ (num -2.356194490192345) +~> math:atan2 1 1 | printf "%.4f\n" (one) +0.7854 +~> math:atan2 -1 -1 | printf "%.4f\n" (one) +-2.3562 //////////////