Skip to content

Commit

Permalink
Fix unit test typo
Browse files Browse the repository at this point in the history
  • Loading branch information
solidpixel committed Jul 2, 2024
1 parent f648880 commit 08026e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/UnitTest/test_simd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 08026e7

Please sign in to comment.