Skip to content

Commit 96c257f

Browse files
committed
Handle new arquillian release version range
1 parent d07d75c commit 96c257f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/test/java/org/openrewrite/java/testing/arquillian/ArquillianJUnit4ToArquillianJunit5Test.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ void convert() {
5656
</dependencies>
5757
</project>
5858
""",
59-
spec -> spec.after(pom -> assertThat(pom).contains("<version>1.9.").actual())
59+
spec -> spec.after(pom -> assertThat(pom)
60+
.doesNotContain("<version>1.7.")
61+
.contains("<version>1.1")
62+
.actual())
6063
)
6164
)
6265
);

0 commit comments

Comments
 (0)