From 13ae21207df4866e1dc0e735fb9719d39376c31b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Wed, 27 Jul 2022 14:47:57 -0700 Subject: [PATCH] Cleanup. --- tests/math_test.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/math_test.cpp b/tests/math_test.cpp index 8fc817c..61c9785 100644 --- a/tests/math_test.cpp +++ b/tests/math_test.cpp @@ -70,7 +70,6 @@ TEST_CASE("libm", "") REQUIRE( 0.0f == bx::abs( 0.0f) ); REQUIRE(389.0f == bx::mod(1389.0f, 1000.0f) ); - REQUIRE(bx::isNan(bx::mod(0.0f, 0.0f) ) ); REQUIRE( 13.0f == bx::floor( 13.89f) ); REQUIRE(-14.0f == bx::floor(-13.89f) );