diff --git a/cosmos/profiles/snowflake/user_encrypted_privatekey_file.py b/cosmos/profiles/snowflake/user_encrypted_privatekey_file.py index c806658e1..6831cbd28 100644 --- a/cosmos/profiles/snowflake/user_encrypted_privatekey_file.py +++ b/cosmos/profiles/snowflake/user_encrypted_privatekey_file.py @@ -45,7 +45,7 @@ class SnowflakeEncryptedPrivateKeyFilePemProfileMapping(BaseProfileMapping): } def can_claim_connection(self) -> bool: - # Make sure this isn't a private key enviroment variable + # Make sure this isn't a private key environmentvariable result = super().can_claim_connection() if result and self.conn.extra_dejson.get("private_key_content") is not None: return False diff --git a/tests/profiles/snowflake/test_snowflake_user_encrypted_privatekey_env_variable.py b/tests/profiles/snowflake/test_snowflake_user_encrypted_privatekey_env_variable.py index 7ed7f7d3d..2c7515f72 100644 --- a/tests/profiles/snowflake/test_snowflake_user_encrypted_privatekey_env_variable.py +++ b/tests/profiles/snowflake/test_snowflake_user_encrypted_privatekey_env_variable.py @@ -1,4 +1,4 @@ -"Tests for the Snowflake user/private key enviroment variable profile." +"Tests for the Snowflake user/private key environmentvariable profile." import json from unittest.mock import patch