From 8255a66c86dd932b8a453298067e0abb11fe639f Mon Sep 17 00:00:00 2001 From: Alex Schofield Date: Wed, 28 Aug 2024 11:14:09 +0100 Subject: test: remove aws_credentials parameter from fixtures --- tests/test_load_lambda.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_load_lambda.py b/tests/test_load_lambda.py index 65106f7..da11c1e 100644 --- a/tests/test_load_lambda.py +++ b/tests/test_load_lambda.py @@ -20,13 +20,13 @@ def aws_credentials(): @pytest.fixture(scope="class") -def mock_s3_client(aws_credentials): +def mock_s3_client(): with mock_aws(): yield boto3.client("s3") @pytest.fixture(scope="class") -def mock_sm_client(aws_credentials): +def mock_sm_client(): with mock_aws(): yield boto3.client("secretsmanager") -- cgit v1.2.3