fixed test

This commit is contained in:
Karma Riuk
2025-07-11 10:30:28 +02:00
parent 1ec438c900
commit 6e471a91d5

View File

@@ -95,7 +95,7 @@ TEST_SUITE("Parser: expression") {
CASE("Infix: '<'", "15 < 15;", 15, "<", 15); CASE("Infix: '<'", "15 < 15;", 15, "<", 15);
CASE("Infix: '>'", "25 > 15;", 25, ">", 15); CASE("Infix: '>'", "25 > 15;", 25, ">", 15);
CASE("Infix: '=='", "5 == 5;", 5, "==", 5); CASE("Infix: '=='", "5 == 5;", 5, "==", 5);
CASE("Infix: '!='", "15 == 5;", 15, "!=", 5); CASE("Infix: '!='", "15 != 5;", 15, "!=", 5);
#undef CASE #undef CASE
} }
} }