aboutsummaryrefslogtreecommitdiffstats
path: root/python/wpt/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/wpt/__init__.py')
-rw-r--r--python/wpt/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/wpt/__init__.py b/python/wpt/__init__.py
index 0dd5406e319..8c9e37df750 100644
--- a/python/wpt/__init__.py
+++ b/python/wpt/__init__.py
@@ -49,13 +49,13 @@ def create_parser():
def update_args_for_legacy_layout(kwargs: dict):
- kwargs["test_paths"]["/"]["metadata_path"] = os.path.join(
+ kwargs["test_paths"]["/"].metadata_path = os.path.join(
WPT_PATH, "meta-legacy-layout"
)
- kwargs["test_paths"]["/_mozilla/"]["metadata_path"] = os.path.join(
+ kwargs["test_paths"]["/_mozilla/"].metadata_path = os.path.join(
WPT_PATH, "mozilla", "meta-legacy-layout"
)
- kwargs["test_paths"]["/_webgl/"]["metadata_path"] = os.path.join(
+ kwargs["test_paths"]["/_webgl/"].metadata_path = os.path.join(
WPT_PATH, "webgl", "meta-legacy-layout"
)