From 50c37200b9f5c422c332615b171e033d88d2b1e8 Mon Sep 17 00:00:00 2001 From: Roland Stahn Date: Wed, 28 May 2025 10:07:04 +0200 Subject: [PATCH] Fix definition of UNITY_NOT_EQUAL in unity_internals.h --- src/unity_internals.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unity_internals.h b/src/unity_internals.h index d12e3a7..f83fdc6 100644 --- a/src/unity_internals.h +++ b/src/unity_internals.h @@ -492,7 +492,7 @@ typedef enum UNITY_GREATER_OR_EQUAL = 0x2 + UNITY_EQUAL_TO, UNITY_SMALLER_THAN = 0x4, UNITY_SMALLER_OR_EQUAL = 0x4 + UNITY_EQUAL_TO, - UNITY_NOT_EQUAL = 0x6 + UNITY_NOT_EQUAL = 0x8 } UNITY_COMPARISON_T; #ifndef UNITY_EXCLUDE_FLOAT