From 768b5b029d324e05481d00645a4a7ef8d0a7d14c Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 3 Jul 2025 08:06:33 -0700 Subject: [PATCH] more tests --- tests/app/clients/test_aws_cloudwatch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/app/clients/test_aws_cloudwatch.py b/tests/app/clients/test_aws_cloudwatch.py index e8378e737..95a184fe7 100644 --- a/tests/app/clients/test_aws_cloudwatch.py +++ b/tests/app/clients/test_aws_cloudwatch.py @@ -133,7 +133,7 @@ def test_init_app_with_localstack(mock_cloud_config, mock_client): os.environ["LOCALSTACK_ENDPOINT_URL"] = "http://localhost:4566" mock_cloud_config.sns_region = "us-north-1" mock_cloud_config.sns_access_key = "key" - mock_cloud_config.sns_secret_key = "sekret" # pragma: allowlist secret + mock_cloud_config.sns_secret_key = "sekret" # pragma: allowlist secret mock_app = MagicMock() client_instance = AwsCloudwatchClient() client_instance.init_app(mock_app) @@ -148,7 +148,7 @@ def test_init_app_without_localstack(mock_cloud_config, mock_client): del os.environ["LOCALSTACK_ENDPOINT_URL"] mock_cloud_config.sns_region = "us-north-1" mock_cloud_config.sns_access_key = "key" - mock_cloud_config.sns_secret_key = "sekret" # pragma: allowlist secret + mock_cloud_config.sns_secret_key = "sekret" # pragma: allowlist secret mock_app = MagicMock() client_instance = AwsCloudwatchClient() client_instance.init_app(mock_app)