From 49b971abf1a07c7bbca81edbab4c3110c4585055 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Wed, 2 May 2018 13:35:08 -0400 Subject: [PATCH] Adjust WPT manifest update python path to unbreak automated sync. --- tests/wpt/update/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/wpt/update/__init__.py b/tests/wpt/update/__init__.py index 3b3693e3ea4..10e18b3eadf 100644 --- a/tests/wpt/update/__init__.py +++ b/tests/wpt/update/__init__.py @@ -13,7 +13,7 @@ here = os.path.split(__file__)[0] sys.path.insert(0, os.path.abspath(os.path.join(here, os.pardir, "web-platform-tests", "tools", "wptrunner"))) sys.path.insert(0, os.path.abspath(os.path.join(here, os.pardir, "web-platform-tests", "tools", "wptserve"))) -sys.path.insert(0, os.path.abspath(os.path.join(here, os.pardir, "tests", "tools", "scripts"))) +sys.path.insert(0, os.path.abspath(os.path.join(here, os.pardir, "web-platform-tests", "tools"))) from wptrunner.update import setup_logging, WPTUpdate from wptrunner.update.base import exit_unclean