Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion envoy.code.check/envoy/code/check/abstract/extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ async def _check_metadata_categories(
"and category is set", )
return tuple(
(f"Unknown extension category for {extension}: {cat}. "
"Please add it to tools/extensions/extensions_check.py")
"Please add it to {EXTENSIONS_SCHEMA}")
for cat
in categories
if cat not in self.extension_categories)
Expand Down
2 changes: 1 addition & 1 deletion envoy.code.check/tests/test_abstract_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1066,7 +1066,7 @@ async def test_extensions__check_metadata_categories(
if wrong_cats:
expected = tuple(
f"Unknown extension category for EXTENSION: {cat}. "
"Please add it to tools/extensions/extensions_check.py"
"Please add it to tools/extensions/extensions_schema.yaml"
for cat
in wrong_cats)
else:
Expand Down