Skip to content

Commit 5631ca6

Browse files
committed
[orc-rt] Fix test names in Math.h unit tests.
1 parent e4552c6 commit 5631ca6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

orc-rt/unittests/MathTest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
using namespace orc_rt;
1717

18-
TEST(STLExtrasTest, isPowerOf2) {
18+
TEST(MathTest, isPowerOf2) {
1919
// Test [0..16]
2020
EXPECT_FALSE(isPowerOf2(0x00));
2121
EXPECT_TRUE(isPowerOf2(0x01));
@@ -57,7 +57,7 @@ TEST(STLExtrasTest, isPowerOf2) {
5757
EXPECT_FALSE(isPowerOf2(-1));
5858
}
5959

60-
TEST(STLExtrasTest, nextPowerOf2) {
60+
TEST(MathTest, nextPowerOf2) {
6161
EXPECT_EQ(nextPowerOf2(0x00), (1 << 0));
6262
EXPECT_EQ(nextPowerOf2(0x01), (1 << 1));
6363
EXPECT_EQ(nextPowerOf2(0x02), (1 << 2));

0 commit comments

Comments
 (0)