summaryrefslogtreecommitdiff
path: root/indra/llmath/tests/llquaternion_test.cpp
diff options
context:
space:
mode:
authorJonathan "Geenz" Goodman <geenz@geenzo.com>2025-09-18 15:23:26 -0400
committerJonathan "Geenz" Goodman <geenz@geenzo.com>2025-09-18 15:23:26 -0400
commit82e431e0906647dcfc4a64b057e6bc305c9add8e (patch)
tree9a1431c0c311de41388879b31f26c6faa8bf5e89 /indra/llmath/tests/llquaternion_test.cpp
parentbadeccbebcfa73a11cf0f8a4562c9a0d386834c1 (diff)
parentbf0f60039b33bb0b1f93431864fd6b51c2a20b5b (diff)
Merge remote-tracking branch 'origin/release/2025.07' into geenz/2025.07-develop
Diffstat (limited to 'indra/llmath/tests/llquaternion_test.cpp')
-rw-r--r--indra/llmath/tests/llquaternion_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llmath/tests/llquaternion_test.cpp b/indra/llmath/tests/llquaternion_test.cpp
index aa3c0ad843..ba18d54d55 100644
--- a/indra/llmath/tests/llquaternion_test.cpp
+++ b/indra/llmath/tests/llquaternion_test.cpp
@@ -349,9 +349,9 @@ namespace tut
ensure(
"2. LLVector4 operator*(const LLVector4 &a, const LLQuaternion &rot) failed",
is_approx_equal(-58153.5390f, result.mV[0]) &&
- (183787.8125f == result.mV[1]) &&
- (116864.164063f == result.mV[2]) &&
- (78.099998f == result.mV[3]));
+ is_approx_equal(183787.8125f, result.mV[1]) &&
+ is_approx_equal(116864.164063f, result.mV[2]) &&
+ is_approx_equal(78.099998f, result.mV[3]));
}
//test case for LLVector3 operator*(const LLVector3 &a, const LLQuaternion &rot) fn.