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

hainenber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 6e7d6a85b45 fix(ag-grid-table): fix failing buildQuery test 
expectation (#38636)
6e7d6a85b45 is described below

commit 6e7d6a85b451b5bc569d10f8581c16a92f752ba2
Author: amaannawab923 <[email protected]>
AuthorDate: Fri Mar 13 23:29:52 2026 +0530

    fix(ag-grid-table): fix failing buildQuery test expectation (#38636)
---
 .../plugins/plugin-chart-ag-grid-table/test/buildQuery.test.ts          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/superset-frontend/plugins/plugin-chart-ag-grid-table/test/buildQuery.test.ts 
b/superset-frontend/plugins/plugin-chart-ag-grid-table/test/buildQuery.test.ts
index 636fc190fcc..acec22c6965 100644
--- 
a/superset-frontend/plugins/plugin-chart-ag-grid-table/test/buildQuery.test.ts
+++ 
b/superset-frontend/plugins/plugin-chart-ag-grid-table/test/buildQuery.test.ts
@@ -1215,7 +1215,7 @@ describe('plugin-chart-ag-grid-table', () => {
         },
       ).queries[0];
 
-      expect(query.extras?.where).toBe('"user_status" = \'active\'');
+      expect(query.extras?.where).toBe("user_status = 'active'");
     });
 
     test('should resolve longer labels before shorter ones', () => {

Reply via email to