aboutsummaryrefslogtreecommitdiffstats
path: root/python/wpt/update.py
diff options
context:
space:
mode:
authorbors-servo <infra@servo.org>2023-06-22 23:42:20 +0200
committerGitHub <noreply@github.com>2023-06-22 23:42:20 +0200
commitbefb472c9d43d77d69ff86b447e857c392fe85e0 (patch)
tree48b01257f40e93e07e62413994372ffe5f2d2191 /python/wpt/update.py
parentcfd24f00bc14551845680713c68ce100404e4f1a (diff)
parentf4578afdfe281db7d065a578782243248640aab5 (diff)
downloadservo-befb472c9d43d77d69ff86b447e857c392fe85e0.tar.gz
servo-befb472c9d43d77d69ff86b447e857c392fe85e0.zip
Auto merge of #29916 - mrobinson:rename-meta-directories, r=atbrakhi
Rename metadata directories Rename metadata directories and update all references. This is in preparation for making Layout 2020 the default layout system. This does the following renames: - `tests/wpt/metadata` → `tests/wpt/meta-legacy-layout` - `tests/wpt/metadata-layout-2020` → `tests/wpt/meta` - `tests/wpt/mozilla/meta` → `tests/wpt/mozilla/meta-legacy-layout` - `tests/wpt/mozilla/meta-layout-2020` → `tests/wpt/mozilla/meta` --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes do not require tests because they change how tests are run. <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'python/wpt/update.py')
-rw-r--r--python/wpt/update.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/wpt/update.py b/python/wpt/update.py
index 377ba06e3ce..a31598c09fb 100644
--- a/python/wpt/update.py
+++ b/python/wpt/update.py
@@ -5,7 +5,7 @@
import os
-from . import WPT_PATH, update_args_for_layout_2020
+from . import WPT_PATH, update_args_for_legacy_layout
from . import importer
@@ -20,7 +20,7 @@ def update_tests(**kwargs):
kwargs["store_state"] = False
importer.check_args(kwargs)
- update_args_for_layout_2020(kwargs)
+ update_args_for_legacy_layout(kwargs)
return 1 if not importer.run_update(**kwargs) else 0