mistercrunch commented on code in PR #32663:
URL: https://github.com/apache/superset/pull/32663#discussion_r2019630172


##########
tests/unit_tests/charts/test_client_processing.py:
##########
@@ -2060,6 +2060,97 @@ def test_apply_client_processing_csv_format():
     }
 
 
+def test_apply_client_processing_csv_format_simple_table():
+    """
+    It should be able to process csv results
+    And not show a default column
+    """
+
+    result = {
+        "queries": [
+            {
+                "result_format": ChartDataResultFormat.CSV,
+                "data": """
+COUNT(is_software_dev)
+4725
+""",
+            }
+        ]
+    }
+    form_data = {
+        "datasource": "19__table",

Review Comment:
   wondering if you can set as a fixture (?) or reuse one of the fixtures?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to