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 2020/06/12 07:06:59 UTC

[airflow] branch master updated: Fix typo in test_connection_schema.py (#9241)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new c3f612d  Fix typo in test_connection_schema.py (#9241)
c3f612d is described below

commit c3f612dba7d5e4adbab92bcb8f52f1ecd5d44eac
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Fri Jun 12 08:06:19 2020 +0100

    Fix typo in test_connection_schema.py (#9241)
---
 tests/api_connexion/schemas/test_connection_schema.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/api_connexion/schemas/test_connection_schema.py b/tests/api_connexion/schemas/test_connection_schema.py
index 4e8876b..a192bb2 100644
--- a/tests/api_connexion/schemas/test_connection_schema.py
+++ b/tests/api_connexion/schemas/test_connection_schema.py
@@ -35,7 +35,7 @@ class TestConnectionCollectionItemSchema(unittest.TestCase):
         clear_db_connections()
 
     @provide_session
-    def test_serialzie(self, session):
+    def test_serialize(self, session):
         connection_model = Connection(
             conn_id='mysql_default',
             conn_type='mysql',
@@ -104,7 +104,7 @@ class TestConnectionCollectionSchema(unittest.TestCase):
         clear_db_connections()
 
     @provide_session
-    def test_serialzie(self, session):
+    def test_serialize(self, session):
         connection_model_1 = Connection(
             conn_id='mysql_default_1',
             conn_type='test-type'