From 6e471a91d53c78bc11d96bf751ec67e94dfaef92 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Fri, 11 Jul 2025 10:30:28 +0200 Subject: [PATCH] fixed test --- test/parser/expression.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parser/expression.cpp b/test/parser/expression.cpp index b513811..f7ba230 100644 --- a/test/parser/expression.cpp +++ b/test/parser/expression.cpp @@ -95,7 +95,7 @@ TEST_SUITE("Parser: expression") { CASE("Infix: '<'", "15 < 15;", 15, "<", 15); CASE("Infix: '>'", "25 > 15;", 25, ">", 15); CASE("Infix: '=='", "5 == 5;", 5, "==", 5); - CASE("Infix: '!='", "15 == 5;", 15, "!=", 5); + CASE("Infix: '!='", "15 != 5;", 15, "!=", 5); #undef CASE } }