This is an automated email from the ASF dual-hosted git repository.

msyavuz pushed a commit to branch msyavuz/refactor/use-ant-tables
in repository https://gitbox.apache.org/repos/asf/superset.git

commit dfaeb32413a5d7418a6adf7993a9720d7f3ac5b5
Author: Mehmet Salih Yavuz <[email protected]>
AuthorDate: Mon Apr 7 10:52:27 2025 +0300

    fix: unit test
---
 superset-frontend/src/components/ListView/ListView.test.jsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/components/ListView/ListView.test.jsx 
b/superset-frontend/src/components/ListView/ListView.test.jsx
index bc392a7b32..5fc230262f 100644
--- a/superset-frontend/src/components/ListView/ListView.test.jsx
+++ b/superset-frontend/src/components/ListView/ListView.test.jsx
@@ -193,7 +193,7 @@ describe('ListView', () => {
   });
 
   it('handles bulk actions on 1 row', async () => {
-    const checkboxes = screen.getAllByRole('checkbox', { name: '' });
+    const checkboxes = screen.getAllByRole('checkbox');
     await userEvent.click(checkboxes[1]); // Index 1 is the first row checkbox
 
     const bulkActionButton = within(

Reply via email to