diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/tools/manifest/utils.py')
-rw-r--r-- | tests/wpt/web-platform-tests/tools/manifest/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests/tools/manifest/utils.py b/tests/wpt/web-platform-tests/tools/manifest/utils.py index cdd274c9b47..60e00ee74d3 100644 --- a/tests/wpt/web-platform-tests/tools/manifest/utils.py +++ b/tests/wpt/web-platform-tests/tools/manifest/utils.py @@ -40,4 +40,5 @@ class cached_property(object): if self.name not in obj.__dict__: obj.__dict__[self.name] = self.func(obj) + obj.__dict__.setdefault("__cached_properties__", set()).add(self.name) return obj.__dict__[self.name] |