Skip to content

Commit

Permalink
fix: substitute UT_ASSERTs with asserts from GTEST
Browse files Browse the repository at this point in the history
  • Loading branch information
EuphoricThinking committed Aug 19, 2024
1 parent 720c8a2 commit 569583a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_base_alloc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ TEST_F(test, baseAllocMultiThreadedAllocMemset) {

for (int i = 0; i < ITERATIONS; i++) {
for (int k = 0; k < ALLOCATION_SIZE; k++) {
UT_ASSERTeq(*(ptrs[i].get() + k), ((i + TID) & 0xFF));
ASSERT_EQ(*(ptrs[i].get() + k), ((i + TID) & 0xFF));
}
}
};
Expand Down

0 comments on commit 569583a

Please sign in to comment.