diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-06-03 18:45:08 -0400 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-06-03 18:45:08 -0400 |
commit | ddc99190bbdc5c82bf0282d12d58a95796fcd0b2 (patch) | |
tree | 99a9a9a2392c59b9831b262ba916408fae97f47e /python | |
parent | 055182dae1d895ba2422e3da85c20a9a64beea71 (diff) | |
download | servo-ddc99190bbdc5c82bf0282d12d58a95796fcd0b2.tar.gz servo-ddc99190bbdc5c82bf0282d12d58a95796fcd0b2.zip |
Pass release/dev arguments to command function for jQuery update
Diffstat (limited to 'python')
-rw-r--r-- | python/servo/testing_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
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', |