Skip to content

Commit

Permalink
[java] What a silly mistake...
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Feb 24, 2021
1 parent e50e7ac commit 76d48d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public Map<String, Object> apply(Map<String, Object> unmodifiedCaps) {
Map<String, Object> caps = unmodifiedCaps.entrySet().parallelStream()
.filter(
entry ->
(CapabilityType.BROWSER_NAME.equals(entry.getKey()) && BrowserType.EDGE.equals(entry.getValue())) ||
(CapabilityType.BROWSER_NAME.equals(entry.getKey()) && BrowserType.CHROME.equals(entry.getValue())) ||
entry.getKey().startsWith("goog:") ||
"chromeOptions".equals(entry.getKey()) ||
"loggingPrefs".equals(entry.getKey()))
Expand Down

0 comments on commit 76d48d8

Please sign in to comment.