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

hugh pushed a commit to branch 
hugh/fix-flacky-test_update_dataset_item_w_override_column
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to 
refs/heads/hugh/fix-flacky-test_update_dataset_item_w_override_column by this 
push:
     new fcc8166  fix flack test
fcc8166 is described below

commit fcc81664862cb113a2fb877c9bf0754708f45a75
Author: hughhhh <[email protected]>
AuthorDate: Mon Apr 12 05:41:01 2021 -0400

    fix flack test
---
 tests/datasets/api_tests.py | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/tests/datasets/api_tests.py b/tests/datasets/api_tests.py
index 2dc2b17..b82ef75 100644
--- a/tests/datasets/api_tests.py
+++ b/tests/datasets/api_tests.py
@@ -583,12 +583,12 @@ class TestDatasetApi(SupersetTestCase):
         dataset = self.insert_default_dataset()
         self.login(username="admin")
         new_col_dict = {
-                    "column_name": "new_col",
-                    "description": "description",
-                    "expression": "expression",
-                    "type": "INTEGER",
-                    "verbose_name": "New Col",
-                }
+            "column_name": "new_col",
+            "description": "description",
+            "expression": "expression",
+            "type": "INTEGER",
+            "verbose_name": "New Col",
+        }
         dataset_data = {
             "columns": [new_col_dict],
             "description": "changed description",

Reply via email to