We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b551e0c commit fc11b21Copy full SHA for fc11b21
java/client/test/org/openqa/selenium/testing/IgnoreComparator.java
@@ -49,7 +49,8 @@ private boolean shouldIgnore(Stream<Ignore> ignoreList) {
49
return ignoreList.anyMatch(
50
driver -> (ignored.contains(driver.value()) || driver.value() == Browser.ALL)
51
&& (!driver.travis() || TestUtilities.isOnTravis())
52
- && (!driver.gitHubActions() || TestUtilities.isOnGitHubActions())
+ && ((!driver.travis() || TestUtilities.isOnTravis())
53
+ || (!driver.gitHubActions() || TestUtilities.isOnGitHubActions()))
54
&& isOpen(driver.issue()));
55
}
56
0 commit comments