You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2021/06/04 17:13:11 UTC

[airflow] branch main updated: Fix broken CI (#16265)

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

kaxilnaik pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 3d0e16d  Fix broken CI (#16265)
3d0e16d is described below

commit 3d0e16d94dd8fd9ecaccbc6f0e616107415cb7d4
Author: Sumit Maheshwari <ms...@users.noreply.github.com>
AuthorDate: Fri Jun 4 22:42:47 2021 +0530

    Fix broken CI (#16265)
    
    * Fix broken CI
    
    * Changes by pre-commit
---
 tests/providers/airbyte/hooks/test_airbyte.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tests/providers/airbyte/hooks/test_airbyte.py b/tests/providers/airbyte/hooks/test_airbyte.py
index e506553..3c7e00d 100644
--- a/tests/providers/airbyte/hooks/test_airbyte.py
+++ b/tests/providers/airbyte/hooks/test_airbyte.py
@@ -128,7 +128,10 @@ class TestAirbyteHook(unittest.TestCase):
 
     @requests_mock.mock()
     def test_connection_success(self, m):
-        m.get(self.health_endpoint, status_code=200,)
+        m.get(
+            self.health_endpoint,
+            status_code=200,
+        )
 
         status, msg = self.hook.test_connection()
         assert status is True