diff options
| author | Alex Schofield <git@ajschof.me> | 2024-08-28 11:14:09 +0100 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2024-08-28 11:14:09 +0100 |
| commit | 8255a66c86dd932b8a453298067e0abb11fe639f (patch) | |
| tree | 69e9617ca9a15c37e31d2f53894bacbed0ce1226 /tests/test_load_lambda.py | |
| parent | 04bbcc289f31c219d811850de86937bd6ba7796c (diff) | |
| download | de-project-bentley-8255a66c86dd932b8a453298067e0abb11fe639f.tar.gz de-project-bentley-8255a66c86dd932b8a453298067e0abb11fe639f.zip | |
test: remove aws_credentials parameter from fixtures
Diffstat (limited to 'tests/test_load_lambda.py')
| -rw-r--r-- | tests/test_load_lambda.py | 4 |
1 files 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") |
