From 83a492a533aecdb122052a9cacd735779ab9dfdd Mon Sep 17 00:00:00 2001 From: Shing Lyu Date: Sat, 30 Jan 2016 09:33:39 +0800 Subject: Fixed nits --- python/servo/testing_commands.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'python/servo/testing_commands.py') diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index 100414a68e2..142a59e766f 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -242,8 +242,10 @@ class MachCommands(CommandBase): def test_webidl(self, quiet, tests): self.ensure_bootstrapped() - test_file_dir = path.abspath(path.join(PROJECT_TOPLEVEL_PATH, "components", "script", "dom", "bindings", "codegen", "parser")) - sys.path.insert(0, test_file_dir) # For the `import WebIDL` in runtests.py + test_file_dir = path.abspath(path.join(PROJECT_TOPLEVEL_PATH, "components", "script", + "dom", "bindings", "codegen", "parser")) + # For the `import WebIDL` in runtests.py + sys.path.insert(0, test_file_dir) run_file = path.abspath(path.join(test_file_dir, "runtests.py")) run_globals = {"__file__": run_file} -- cgit v1.2.3