We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30346bc commit 82a4388Copy full SHA for 82a4388
include/ut_kvp_profile.h
@@ -87,7 +87,7 @@ extern "C"
87
#define UT_ASSERT_KVP_EQUAL_PROFILE_UINT32(checkValue, key) UT_ASSERT_EQUAL(UT_KVP_PROFILE_GET_UINT32(key), checkValue);
88
89
/**! Asserts that a UINT64 KVP field matches the expected value. */
90
-#define UT_ASSERT_KVP_EQUAL_PROFILE_UINT64(checkValue, key) UT_ASSERT(UT_KVP_PROFILE_GET_UINT64(key) == (checkValue));
+#define UT_ASSERT_KVP_EQUAL_PROFILE_UINT64(checkValue, key) UT_ASSERT_EQUAL(UT_KVP_PROFILE_GET_UINT64(key), checkValue);
91
92
/**! Asserts that an INT8 KVP field matches the expected value. */
93
#define UT_ASSERT_KVP_EQUAL_PROFILE_INT8(checkValue, key) UT_ASSERT_EQUAL(UT_KVP_PROFILE_GET_INT8(key), checkValue);
0 commit comments