Skip to content

Commit fe4451c

Browse files
committed
Simplify Android browser test runner invocation to reduce flag duplication
1 parent 82599ab commit fe4451c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

cobalt/testing/browser_tests/tools/run_tests.template.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,7 @@ def main():
134134
if is_android:
135135
logging.info("Executing Android test runner for '%s': %s", target_name,
136136
test_runner)
137-
cmd = [vpython_path, test_runner]
138-
if "--runtime-deps-path" not in runner_args:
139-
cmd.extend(["--runtime-deps-path", deps_path])
140-
cmd.extend(runner_args)
137+
cmd = [vpython_path, test_runner] + runner_args
141138
else:
142139
logging.info(
143140
"Executing Linux test runner for '%s' using xvfb.py and "

0 commit comments

Comments
 (0)