Skip to content

Commit 41b9b38

Browse files
committed
Fix small thinko in python browser tests
1 parent c7e683e commit 41b9b38

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

py/private/browsers.bzl

+2-3
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ chrome_args = select({
3131
edge_args = select({
3232
"@selenium//common:use_pinned_macos_edge": [
3333
"--driver-binary=$(location @mac_edgedriver//:msedgedriver)",
34-
"--browser-binary",
35-
"$(location @mac_edge//:Edge.app)/Contents/MacOS/Microsoft Edge",
34+
"--browser-binary='$(location @mac_edge//:Edge.app)/Contents/MacOS/Microsoft Edge'",
3635
],
3736
"@selenium//common:use_local_msedgedriver": [
38-
"-Dwebdriver.edge.driver=$(location @selenium//common:msedgedriver)",
37+
"--driver-binary=$(location @selenium//common:msedgedriver)",
3938
],
4039
"//conditions:default": []
4140
}) + headless_args

0 commit comments

Comments
 (0)