From 1374336d3847aa859f668b6957ddfccef946685e Mon Sep 17 00:00:00 2001 From: Pauline Ribeyre <4224001+paulineribeyre@users.noreply.github.com> Date: Mon, 11 Nov 2024 16:17:00 -0600 Subject: [PATCH] add docstrings --- tests/test_storage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_storage.py b/tests/test_storage.py index 3d95aa4..392a3f0 100644 --- a/tests/test_storage.py +++ b/tests/test_storage.py @@ -12,7 +12,7 @@ @pytest.mark.asyncio async def test_create_and_list_user_keys(client, access_token_patcher): """ - TODO + Create and delete keys, and check that the listing endpoint returns active keys. """ with mock_aws(): aws_utils.iam_client = boto3.client("iam") @@ -135,7 +135,7 @@ async def test_list_user_keys_status(client, access_token_patcher): @pytest.mark.asyncio async def test_too_many_user_keys(client, access_token_patcher): """ - TODO + Users should not be able to create new keys after reaching MAX_IAM_KEYS_PER_USER. """ with mock_aws(): aws_utils.iam_client = boto3.client("iam")