From 644e8d09ebcb3682e4eb05ce4f133eb5d4e29adc Mon Sep 17 00:00:00 2001 From: malayaleecoder Date: Wed, 23 Mar 2016 20:17:02 +0530 Subject: [PATCH] Remove test-ref command from testing_commands.py. Fixes #10125 --- python/servo/testing_commands.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index ddd8cc90918..37ee8fcc7ec 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -270,15 +270,6 @@ class MachCommands(CommandBase): if result != 0: return result - @Command('test-ref', - description='Run the reference tests', - category='testing') - @CommandArgument('params', default=None, nargs=argparse.REMAINDER) - def test_ref(self, params=None): - print("Ref tests have been replaced by web-platform-tests under " - "tests/wpt/mozilla/.") - return 0 - @Command('test-content', description='Run the content tests', category='testing')