Skip to content

Commit bec99e1

Browse files
committed
Correct typo
1 parent 344fef5 commit bec99e1

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

.bazelrc

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -123,15 +123,5 @@ build:rbe_release --config=release
123123
build:rbe_release --config=rbe
124124
build:rbe_release --remote_download_toplevel
125125

126-
build:rbe-ci:linux --//common:use_pinned_linux_chrome=true
127-
build:rbe-ci:linux --//common:use_pinned_linux_firefox=true
128-
build:rbe-ci:linux --//common:use_pinned_linux_edge=true
129-
130-
build:rbe-ci:macos --//common:use_pinned_macos_chrome=true
131-
build:rbe-ci:macos --//common:use_pinned_macos_firefox=true
132-
build:rbe-ci:macos --//common:use_pinned_macos_edge=true
133-
134-
build:rbe-ci --//common:headless=true
135-
136126
# RBE
137127
import %workspace%/.bazelrc.remote

common/browsers.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ chrome_beta_data = select({
101101
"@linux_beta_chrome//:chrome-linux64/chrome",
102102
],
103103
"@selenium//common:use_pinned_macos_chrome": [
104-
"@mac_chrome_beta//:Chrome.app",
104+
"@mac_beta_chrome//:Chrome.app",
105105
],
106106
"//conditions:default": [],
107107
}) + chromedriver_beta_data

rb/spec/tests.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ BROWSERS = {
4747
"CHROMEDRIVER_BINARY": "$(location @linux_beta_chromedriver//:chromedriver)",
4848
},
4949
"@selenium//common:use_pinned_macos_chrome": {
50-
"CHROME_BINARY": "$(location @mac_chrome_beta//:Chrome.app)/Contents/MacOS/Chrome",
51-
"CHROMEDRIVER_BINARY": "$(location @mac_chromedriver_beta//:chromedriver)",
50+
"CHROME_BINARY": "$(location @mac_beta_chrome//:Chrome.app)/Contents/MacOS/Chrome",
51+
"CHROMEDRIVER_BINARY": "$(location @mac_beta_chromedriver//:chromedriver)",
5252
},
5353
"//conditions:default": {},
5454
}) | select({

0 commit comments

Comments
 (0)