diff options
author | malayaleecoder <malayaleecoder@gmail.com> | 2016-03-23 20:17:02 +0530 |
---|---|---|
committer | malayaleecoder <malayaleecoder@gmail.com> | 2016-03-23 20:17:02 +0530 |
commit | 644e8d09ebcb3682e4eb05ce4f133eb5d4e29adc (patch) | |
tree | 73a29816ebd68b9b0fcbb50180688382d8252299 /python/servo/testing_commands.py | |
parent | 4ee331059ddd0185f8a24955e591fd55d426bc38 (diff) | |
download | servo-644e8d09ebcb3682e4eb05ce4f133eb5d4e29adc.tar.gz servo-644e8d09ebcb3682e4eb05ce4f133eb5d4e29adc.zip |
Remove test-ref command from testing_commands.py. Fixes #10125
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r-- | python/servo/testing_commands.py | 9 |
1 files changed, 0 insertions, 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') |