Skip to content

Commit 82a4388

Browse files
Copilotkanjoe24
andcommitted
Revert UT_ASSERT_KVP_EQUAL_PROFILE_UINT64 to use UT_ASSERT_EQUAL
Co-authored-by: kanjoe24 <165808281+kanjoe24@users.noreply.github.com> Agent-Logs-Url: https://github.com/rdkcentral/ut-core/sessions/aa66385a-4b20-4032-aeba-d5710d394a7f
1 parent 30346bc commit 82a4388

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/ut_kvp_profile.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ extern "C"
8787
#define UT_ASSERT_KVP_EQUAL_PROFILE_UINT32(checkValue, key) UT_ASSERT_EQUAL(UT_KVP_PROFILE_GET_UINT32(key), checkValue);
8888

8989
/**! 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));
90+
#define UT_ASSERT_KVP_EQUAL_PROFILE_UINT64(checkValue, key) UT_ASSERT_EQUAL(UT_KVP_PROFILE_GET_UINT64(key), checkValue);
9191

9292
/**! Asserts that an INT8 KVP field matches the expected value. */
9393
#define UT_ASSERT_KVP_EQUAL_PROFILE_INT8(checkValue, key) UT_ASSERT_EQUAL(UT_KVP_PROFILE_GET_INT8(key), checkValue);

0 commit comments

Comments
 (0)