Skip to content

Commit

Permalink
ignore owasp 12
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Jan 12, 2025
1 parent a57fe18 commit 54e0b8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/htmlunit/ExternalTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,9 @@ private static boolean isIgnored(@SuppressWarnings("unused") final String groupI
return true;
}

// 11.x requires java11
// >= 11.x requires java11
if ("org.owasp".equals(groupId)
&& version.startsWith("11.")) {
&& (version.startsWith("11.") || version.startsWith("12."))) {
return true;
}

Expand Down

0 comments on commit 54e0b8f

Please sign in to comment.