Skip to content

Commit 7ae5dc1

Browse files
committed
Expect simplified negation in InvertConditionTest
1 parent cd1211e commit 7ae5dc1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rewrite-java-test/src/test/java/org/openrewrite/java/InvertConditionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class Test {
6464
boolean test() {
6565
if(b) {}
6666
if(!(b || a)) {}
67-
if(1 >= 2) {}
67+
if(false) {}
6868
if(!b) {}
6969
if(!(b)) {}
7070
if(!test()) {}

0 commit comments

Comments
 (0)