chore: add blank

This commit is contained in:
tomoya-kawaguchi
2025-05-29 13:05:40 +09:00
parent cd96f6b911
commit 5e535a8868
4 changed files with 4 additions and 4 deletions

View File

@ -67,4 +67,4 @@ class AWSSecretsManagerProvider(SecretProvider):
raise e
except Exception as e:
get_logger().error(f"Failed to store secret {secret_name} in AWS Secrets Manager: {e}")
raise e
raise e

View File

@ -99,4 +99,4 @@ class TestAWSSecretsManagerProvider:
mock_client.update_secret.side_effect = Exception("AWS error")
with pytest.raises(Exception):
provider.store_secret('test-secret', 'test-value')
provider.store_secret('test-secret', 'test-value')

View File

@ -117,4 +117,4 @@ class TestConfigLoaderSecrets:
mock_get_provider.side_effect = Exception("Provider error")
# Confirm processing continues even when exception occurs
apply_secrets_manager_config() # Confirm no exception is raised
apply_secrets_manager_config() # Confirm no exception is raised

View File

@ -66,4 +66,4 @@ class TestSecretProviderFactory:
MockProvider.side_effect = Exception("Initialization failed")
with pytest.raises(ValueError, match="Failed to initialize aws_secrets_manager secret provider"):
get_secret_provider()
get_secret_provider()