From f93ea0beb41f8186353019d0d04ae194015d5bb5 Mon Sep 17 00:00:00 2001 From: Ting-Yu Lin Date: Tue, 21 May 2019 13:09:21 +0000 Subject: [PATCH] Bug 1552964 - Remove the third argument passed to run_robocop_test(). r=ahal Differential Revision: https://phabricator.services.mozilla.com/D31873 --HG-- extra : moz-landing-system : lando --- testing/mochitest/mach_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/mochitest/mach_commands.py b/testing/mochitest/mach_commands.py index 8c8471c5e133..85cc680357e9 100644 --- a/testing/mochitest/mach_commands.py +++ b/testing/mochitest/mach_commands.py @@ -576,7 +576,7 @@ class RobocopCommands(MachCommandBase): kwargs['adbPath'] = get_adb_path(self) mochitest = self._spawn(MochitestRunner) - return mochitest.run_robocop_test(self._mach_context, tests, 'robocop', **kwargs) + return mochitest.run_robocop_test(self._mach_context, tests, **kwargs) # NOTE python/mach/mach/commands/commandinfo.py references this function