Skip to content

Commit 0f39537

Browse files
Update test_bitwise.c
1 parent 74af930 commit 0f39537

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

code/tests/cases/test_bitwise.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ FOSSIL_TEST(c_test_bitwise_validate) {
140140

141141
// Mask with an unknown bit set (0x8)
142142
status = fossil_sys_bitwise_validate(0x8, &table);
143-
ASSUME_ITS_NOTEQUAL_I32(status, 0); // Expect failure
143+
ASSUME_NOT_EQUAL_I32(status, 0); // Expect failure
144144
}
145145

146146
// ** Test fossil_sys_bitwise_name Function **
@@ -160,7 +160,7 @@ FOSSIL_TEST(c_test_bitwise_name) {
160160
ASSUME_ITS_EQUAL_CSTR(name, "execute");
161161

162162
name = fossil_sys_bitwise_name(0x8, &table);
163-
ASSUME_ITS_NULL(name); // 0x8 is not in the table
163+
ASSUME_ITS_CNULL(name); // 0x8 is not in the table
164164
}
165165

166166
// ** Test fossil_sys_bitwise_count Function **

0 commit comments

Comments
 (0)