From 01d3cffdffeb8889f549adb8e76afe4f4904a74a Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Tue, 16 Jan 2024 17:42:47 -0800 Subject: [PATCH] (test) cleanup --- litellm/tests/test_key_generate_dynamodb.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/litellm/tests/test_key_generate_dynamodb.py b/litellm/tests/test_key_generate_dynamodb.py index ea4254a221..b2463bf97f 100644 --- a/litellm/tests/test_key_generate_dynamodb.py +++ b/litellm/tests/test_key_generate_dynamodb.py @@ -73,8 +73,6 @@ def test_generate_and_call_with_valid_key(): print("result from user auth with new key", result) asyncio.run(test()) - # result = user_auth(ValidRequest(key)) - # assert result is True except Exception as e: pytest.fail(f"An exception occurred - {str(e)}") @@ -97,8 +95,6 @@ def test_call_with_invalid_key(): pytest.fail(f"This should have failed!") asyncio.run(test()) - # result = user_auth(ValidRequest(key)) - # assert result is True except Exception as e: print("Got Exception", e) print(str(e))