summaryrefslogtreecommitdiff
path: root/src/utils/mathutils_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/mathutils_unittest.cc')
-rw-r--r--src/utils/mathutils_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/mathutils_unittest.cc b/src/utils/mathutils_unittest.cc
index 6ec2ce831..187accf74 100644
--- a/src/utils/mathutils_unittest.cc
+++ b/src/utils/mathutils_unittest.cc
@@ -24,7 +24,7 @@
#include "debug.h"
-TEST_CASE("MathUtils powerOfTwo")
+TEST_CASE("MathUtils powerOfTwo", "")
{
REQUIRE(powerOfTwo(0) == 1);
REQUIRE(powerOfTwo(1) == 1);
@@ -95,7 +95,7 @@ TEST_CASE("MathUtils powerOfTwo")
REQUIRE(powerOfTwo(1000000) == 1048576);
}
-TEST_CASE("MathUtils tests fastSqrtInt")
+TEST_CASE("MathUtils tests fastSqrtInt", "")
{
for (int f = 0; f < 1005; f ++)
REQUIRE(fastSqrtInt(f) == CAST_S32(sqrt(f)));