Skip to content

Commit 640b190

Browse files
committed
Fix formatting
1 parent 5ff5d7f commit 640b190

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

rb/spec/tests.bzl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ BROWSERS = {
128128
"data": [],
129129
"deps": ["//rb/lib/selenium/webdriver:ie"],
130130
"tags": [
131-
"skip-remote", # RBE is Linux-only.
131+
"skip-remote", # RBE is Linux-only.
132132
],
133133
"target_compatible_with": ["@platforms//os:windows"],
134134
"env": {
@@ -140,8 +140,8 @@ BROWSERS = {
140140
"data": [],
141141
"deps": ["//rb/lib/selenium/webdriver:safari"],
142142
"tags": [
143-
"exclusive-if-local", # Safari cannot run in parallel.
144-
"skip-remote", # RBE is Linux-only.
143+
"exclusive-if-local", # Safari cannot run in parallel.
144+
"skip-remote", # RBE is Linux-only.
145145
],
146146
"target_compatible_with": ["@platforms//os:macos"],
147147
"env": {
@@ -153,8 +153,8 @@ BROWSERS = {
153153
"data": [],
154154
"deps": ["//rb/lib/selenium/webdriver:safari"],
155155
"tags": [
156-
"exclusive-if-local", # Safari cannot run in parallel.
157-
"skip-remote", # RBE is Linux-only.
156+
"exclusive-if-local", # Safari cannot run in parallel.
157+
"skip-remote", # RBE is Linux-only.
158158
],
159159
"target_compatible_with": ["@platforms//os:macos"],
160160
"env": {
@@ -165,15 +165,15 @@ BROWSERS = {
165165
}
166166

167167
def rb_integration_test(name, srcs, deps = [], data = [], browsers = BROWSERS.keys(), tags = []):
168-
# Generate a library target that is used by //rb/spec:spec to expose all tests to //rb:lint.
168+
# Generate a library target that is used by //rb/spec:spec to expose all tests to //rb:lint.
169169
rb_library(
170170
name = name,
171171
srcs = srcs,
172172
visibility = ["//rb:__subpackages__"],
173173
)
174174

175175
for browser in browsers:
176-
# Generate a test target for local browser execution.
176+
# Generate a test target for local browser execution.
177177
rb_test(
178178
name = "{}-{}".format(name, browser),
179179
size = "large",
@@ -238,7 +238,7 @@ def rb_unit_test(name, srcs, deps, data = []):
238238
args = ["rb/spec/"],
239239
main = "@bundle//bin:rspec",
240240
data = data,
241-
tags = ["no-sandbox"], # TODO: Do we need this?
241+
tags = ["no-sandbox"], # TODO: Do we need this?
242242
deps = ["//rb/spec/unit/selenium/webdriver:spec_helper"] + deps,
243243
visibility = ["//rb:__subpackages__"],
244244
)

scripts/pinned_browsers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ def print_firefox(version, workspace_name, sha_linux, sha_mac):
426426

427427

428428
if __name__ == "__main__":
429-
content = """# This file has been generated using bazel run scripts:pinned_browsers
429+
content = """# This file has been generated using `bazel run scripts:pinned_browsers`
430430
431431
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
432432
load("//common/private:deb_archive.bzl", "deb_archive")

0 commit comments

Comments
 (0)