aboutsummaryrefslogtreecommitdiffstats
path: root/python/wpt/update.py
diff options
context:
space:
mode:
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