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 } }