You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by yj...@apache.org on 2020/11/12 16:38:27 UTC

[incubator-superset] branch master updated: chore: clean up a debug line from #11653 (#11663)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 542d2e3  chore: clean up a debug line from #11653 (#11663)
542d2e3 is described below

commit 542d2e3b06095ff90bba382bf0b05adc8e62f91a
Author: Jesse Yang <je...@airbnb.com>
AuthorDate: Thu Nov 12 08:37:49 2020 -0800

    chore: clean up a debug line from #11653 (#11663)
---
 tests/databases/api_tests.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tests/databases/api_tests.py b/tests/databases/api_tests.py
index 977b4b1..4d3d5ce 100644
--- a/tests/databases/api_tests.py
+++ b/tests/databases/api_tests.py
@@ -358,7 +358,6 @@ class TestDatabaseApi(SupersetTestCase):
         database_data = {"database_name": "test-database-updated"}
         uri = f"api/v1/database/{test_database.id}"
         rv = self.client.put(uri, json=database_data)
-        print(rv.data.decode("utf-8"), database_data)
         self.assertEqual(rv.status_code, 200)
         # Cleanup
         model = db.session.query(Database).get(test_database.id)