Skip to content

Commit bf53c3d

Browse files
committed
Fix ignore logic
1 parent 32f880a commit bf53c3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/test/org/openqa/selenium/testing/IgnoreComparator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public boolean shouldIgnore(Stream<Ignore> ignoreList) {
5252
return ignoreList.anyMatch(
5353
driver ->
5454
(ignored.contains(driver.value()) || driver.value() == Browser.ALL)
55-
&& ((!driver.gitHubActions() || TestUtilities.isOnGitHubActions()))
55+
&& (!driver.gitHubActions() || TestUtilities.isOnGitHubActions())
5656
&& isOpen(driver.issue()));
5757
}
5858

0 commit comments

Comments
 (0)