Skip to content

Commit

Permalink
fix: substituted a UT_ASSERT with an assert from GTEST
Browse files Browse the repository at this point in the history
  • Loading branch information
EuphoricThinking committed Aug 13, 2024
1 parent 720c8a2 commit 59fee65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_proxy_lib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ TEST_F(test, proxyLibBasic) {
#else
size_t size = ::malloc_usable_size(ptr);
#endif
UT_ASSERTeq(size, 0xDEADBEEF);
ASSERT_EQ(size, 0xDEADBEEF);
}

0 comments on commit 59fee65

Please sign in to comment.