Skip to content

Commit dd226b5

Browse files
fix: substituted a UT_ASSERT with an assert from GTEST
Ref. #569
1 parent 720c8a2 commit dd226b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_proxy_lib.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ TEST_F(test, proxyLibBasic) {
3131
#else
3232
size_t size = ::malloc_usable_size(ptr);
3333
#endif
34-
UT_ASSERTeq(size, 0xDEADBEEF);
34+
ASSERT_EQ(size, 0xDEADBEEF);
3535
}

0 commit comments

Comments
 (0)