From 22df40b35c8eafc600602a24a529250db69f6182 Mon Sep 17 00:00:00 2001 From: Marc Leclair Date: Tue, 12 Oct 2021 14:07:56 -0400 Subject: [PATCH] For #21700: Made the class to test argument a requirement --- tools/run_benchmark.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/run_benchmark.py b/tools/run_benchmark.py index 301d89d49..0456b8982 100644 --- a/tools/run_benchmark.py +++ b/tools/run_benchmark.py @@ -20,10 +20,10 @@ file_url = "file:///" def parse_args(): parser = argparse.ArgumentParser(description=DESCRIPTION) - parser.add_argument("--class_to_test", + parser.add_argument("class_to_test", help="Path to the class to test. Format it as 'org.mozilla.fenix.[path_to_benchmark_test") - parser.add_argument("--open_file_in_browser", - help="Open the JSON file in the browser once the tests are done.") + parser.add_argument("--open_file_in_browser", + help="Open the JSON file in the browser once the tests are done.") return parser.parse_args()