From 8c318af30787dc00997bf22b6403be2126901bf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20W=C3=BClker?= Date: Thu, 1 May 2025 03:56:15 +0200 Subject: [PATCH] Fix `mach test-jquery` (#36786) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes https://github.com/servo/servo/issues/36740 Signed-off-by: Simon Wülker --- python/servo/testing_commands.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index 845b09b622a..860217d062a 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -432,9 +432,9 @@ class MachCommands(CommandBase): return [py, avd, apk] @Command('test-jquery', description='Run the jQuery test suite', category='testing') - @CommandBase.common_command_arguments(build_configuration=False, build_type=True) - def test_jquery(self, build_type: BuildType): - return self.jquery_test_runner("test", build_type) + @CommandBase.common_command_arguments(binary_selection=True) + def test_jquery(self, servo_binary: str): + return self.jquery_test_runner("test", servo_binary) @Command('test-dromaeo', description='Run the Dromaeo test suite', category='testing') @CommandArgument('tests', default=["recommended"], nargs="...", help="Specific tests to run")