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 22:26:12 UTC

[airflow] branch master updated: Fix Azure container registry hook tests (#9262)

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 ed09598  Fix Azure container registry hook tests (#9262)
ed09598 is described below

commit ed095981e876df80cd04eff476e1361ad80445be
Author: Ash Berlin-Taylor <as...@firemirror.com>
AuthorDate: Fri Jun 12 23:25:45 2020 +0100

    Fix Azure container registry hook tests (#9262)
    
    conn_type was enforced by #9187
---
 tests/providers/microsoft/azure/hooks/test_azure_container_registry.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/providers/microsoft/azure/hooks/test_azure_container_registry.py b/tests/providers/microsoft/azure/hooks/test_azure_container_registry.py
index e9b1b14..801721c 100644
--- a/tests/providers/microsoft/azure/hooks/test_azure_container_registry.py
+++ b/tests/providers/microsoft/azure/hooks/test_azure_container_registry.py
@@ -29,6 +29,7 @@ class TestAzureContainerRegistryHook(unittest.TestCase):
         db.merge_conn(
             Connection(
                 conn_id='azure_container_registry',
+                conn_type='azure_container_registry',
                 login='myuser',
                 password='password',
                 host='test.cr',