aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/tools/localpaths.py
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2016-09-26 10:52:50 +0200
committerMs2ger <Ms2ger@gmail.com>2016-09-26 13:24:06 +0200
commit3b4f0ec0bb5894244885c34fccae96bb2f0ce136 (patch)
tree1199d22da86380aa31da7555af4a9a93c08b1600 /tests/wpt/web-platform-tests/tools/localpaths.py
parentd00639c55f9a342765483d347a3c29d4647f7411 (diff)
downloadservo-3b4f0ec0bb5894244885c34fccae96bb2f0ce136.tar.gz
servo-3b4f0ec0bb5894244885c34fccae96bb2f0ce136.zip
Update web-platform-tests to revision 3b3585e368841b77caea8576fa56cef91c3fbdf0
Diffstat (limited to 'tests/wpt/web-platform-tests/tools/localpaths.py')
-rw-r--r--tests/wpt/web-platform-tests/tools/localpaths.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/wpt/web-platform-tests/tools/localpaths.py b/tests/wpt/web-platform-tests/tools/localpaths.py
index cf31977ec7d..a4930015c05 100644
--- a/tests/wpt/web-platform-tests/tools/localpaths.py
+++ b/tests/wpt/web-platform-tests/tools/localpaths.py
@@ -4,11 +4,11 @@ import sys
here = os.path.abspath(os.path.split(__file__)[0])
repo_root = os.path.abspath(os.path.join(here, os.pardir))
-sys.path.insert(0, os.path.join(repo_root, "tools"))
-sys.path.insert(0, os.path.join(repo_root, "tools", "six"))
-sys.path.insert(0, os.path.join(repo_root, "tools", "html5lib"))
-sys.path.insert(0, os.path.join(repo_root, "tools", "wptserve"))
-sys.path.insert(0, os.path.join(repo_root, "tools", "pywebsocket", "src"))
-sys.path.insert(0, os.path.join(repo_root, "tools", "py"))
-sys.path.insert(0, os.path.join(repo_root, "tools", "pytest"))
-sys.path.insert(0, os.path.join(repo_root, "tools", "webdriver"))
+sys.path.insert(0, os.path.join(here))
+sys.path.insert(0, os.path.join(here, "six"))
+sys.path.insert(0, os.path.join(here, "html5lib"))
+sys.path.insert(0, os.path.join(here, "wptserve"))
+sys.path.insert(0, os.path.join(here, "pywebsocket", "src"))
+sys.path.insert(0, os.path.join(here, "py"))
+sys.path.insert(0, os.path.join(here, "pytest"))
+sys.path.insert(0, os.path.join(here, "webdriver"))