From 08026e7e974bad086eb2b2054fa4a2138a4a8ea6 Mon Sep 17 00:00:00 2001 From: Peter Harris Date: Tue, 2 Jul 2024 08:48:22 +0100 Subject: [PATCH] Fix unit test typo --- Source/UnitTest/test_simd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/UnitTest/test_simd.cpp b/Source/UnitTest/test_simd.cpp index 0a0698a1..f86403d0 100644 --- a/Source/UnitTest/test_simd.cpp +++ b/Source/UnitTest/test_simd.cpp @@ -203,7 +203,7 @@ TEST(vfloat, ChangeSign) /** @brief Test VLA atan. */ TEST(vfloat, Atan) { - vfloa4 a(-0.15f, 0.0f, 0.9f, 2.1f); + vfloat4 a(-0.15f, 0.0f, 0.9f, 2.1f); vfloat4 r = atan(a); EXPECT_NEAR(r.lane<0>(), -0.149061f, 0.005f); EXPECT_NEAR(r.lane<1>(), 0.000000f, 0.005f);