From af10f62bf17bf78f691b9bbe0e97cf2360839ff4 Mon Sep 17 00:00:00 2001 From: Maksym Yadlovskyi Date: Thu, 9 Jan 2025 16:46:57 +0100 Subject: [PATCH] fix test --- .../components/common/EntityFilters/EntityFilters.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graylog2-web-interface/src/components/common/EntityFilters/EntityFilters.test.tsx b/graylog2-web-interface/src/components/common/EntityFilters/EntityFilters.test.tsx index fd9c55ffac16..e3fccb17d130 100644 --- a/graylog2-web-interface/src/components/common/EntityFilters/EntityFilters.test.tsx +++ b/graylog2-web-interface/src/components/common/EntityFilters/EntityFilters.test.tsx @@ -120,8 +120,8 @@ describe('', () => { }, ]; - const EntityFilters = (props: Optional, 'setUrlQueryFilters' | 'attributes'>) => ( - + const EntityFilters = (props: Optional, 'setUrlQueryFilters' | 'attributes' | 'appSection'>) => ( + ); const dropdownIsHidden = (dropdownTitle: string) => expect(screen.queryByRole('heading', { name: new RegExp(dropdownTitle, 'i') })).not.toBeInTheDocument();