Minor fix for ExpressionsTest.

This commit is contained in:
2021-07-26 20:02:20 +02:00
parent 5ffffb5680
commit 9553da6a1c
2 changed files with 3 additions and 3 deletions
@@ -40,7 +40,7 @@ internal class ExpressionsTest : AbstractParsingTest() {
@Test
internal fun comparing_expressions(@MyTestCase testCase: ParsingTestExtension.IParsingTestCase) {
testGoodSyntax(testCase, "FOO = ((WIDTH<20)&&(HEIGHT<=10))||((WIDTH>=40)&&(HEIGHT>=128))&&(WIDTH!=0)&&(HEIGHT<>0)=1\n")
testGoodSyntax(testCase, "FOO = ((WIDTH<20)&&(HEIGHT<=10))||((WIDTH>=40)&&(HEIGHT>128))&&(WIDTH!=0)&&(HEIGHT<>0)=1\n")
}
@Test