Skip to content

Commit 50c3720

Browse files
authored
Fix definition of UNITY_NOT_EQUAL in unity_internals.h
1 parent 5edda03 commit 50c3720

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/unity_internals.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ typedef enum
492492
UNITY_GREATER_OR_EQUAL = 0x2 + UNITY_EQUAL_TO,
493493
UNITY_SMALLER_THAN = 0x4,
494494
UNITY_SMALLER_OR_EQUAL = 0x4 + UNITY_EQUAL_TO,
495-
UNITY_NOT_EQUAL = 0x6
495+
UNITY_NOT_EQUAL = 0x8
496496
} UNITY_COMPARISON_T;
497497

498498
#ifndef UNITY_EXCLUDE_FLOAT

0 commit comments

Comments
 (0)