diff --git a/kafka-ui-react-app/src/components/ConsumerGroups/List/List.tsx b/kafka-ui-react-app/src/components/ConsumerGroups/List/List.tsx
index f5b006a1c6d03271b1bc6623981591dafb684d76..9cd37695850396e0099f9c280bfd77411e77e9ad 100644
--- a/kafka-ui-react-app/src/components/ConsumerGroups/List/List.tsx
+++ b/kafka-ui-react-app/src/components/ConsumerGroups/List/List.tsx
@@ -22,7 +22,7 @@ const List: React.FC = () => {
diff --git a/kafka-ui-react-app/src/components/ConsumerGroups/List/__test__/List.spec.tsx b/kafka-ui-react-app/src/components/ConsumerGroups/List/__test__/List.spec.tsx
index 1bcb34daac93d84e98ed971c7502c11e51ccce8c..0ac9c0ceedfc9449c83de93443528352703bdefe 100644
--- a/kafka-ui-react-app/src/components/ConsumerGroups/List/__test__/List.spec.tsx
+++ b/kafka-ui-react-app/src/components/ConsumerGroups/List/__test__/List.spec.tsx
@@ -30,7 +30,10 @@ describe('List', () => {
describe('when searched', () => {
it('renders only searched consumers', () => {
- userEvent.type(screen.getByPlaceholderText('Search'), 'groupId1');
+ userEvent.type(
+ screen.getByPlaceholderText('Search by Consumer Group ID'),
+ 'groupId1'
+ );
expect(screen.getByText('groupId1')).toBeInTheDocument();
expect(screen.getByText('groupId2')).toBeInTheDocument();
});