diff --git a/plugins/catalog/src/components/CatalogKindHeader/CatalogKindHeader.test.tsx b/plugins/catalog/src/components/CatalogKindHeader/CatalogKindHeader.test.tsx
index 7ce14817d6..7783278eda 100644
--- a/plugins/catalog/src/components/CatalogKindHeader/CatalogKindHeader.test.tsx
+++ b/plugins/catalog/src/components/CatalogKindHeader/CatalogKindHeader.test.tsx
@@ -139,30 +139,34 @@ describe('', () => {
it('responds to external queryParameters changes', async () => {
const updateFilters = jest.fn();
const rendered = await renderWithEffects(
-
-
- ,
+
+
+
+
+ ,
);
expect(updateFilters).toHaveBeenLastCalledWith({
- kind: new EntityKindFilter('Components'),
+ kind: new EntityKindFilter('components'),
});
rendered.rerender(
-
-
- ,
+
+
+
+
+ ,
);
expect(updateFilters).toHaveBeenLastCalledWith({
- kind: new EntityKindFilter('Template'),
+ kind: new EntityKindFilter('templates'),
});
});
});