From ddc99190bbdc5c82bf0282d12d58a95796fcd0b2 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Wed, 3 Jun 2015 18:45:08 -0400 Subject: [PATCH] Pass release/dev arguments to command function for jQuery update --- python/servo/testing_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index b9ce70b2d8b..2274c84c8ed 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -251,7 +251,7 @@ class MachCommands(CommandBase): help='Run the release build') @CommandArgument('--dev', '-d', action='store_true', help='Run the dev build') - def update_jquery(self): + def update_jquery(self, release, dev): return self.jquery_test_runner("update", release, dev) @Command('test-css',