Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fixes formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
desertaxle committed Nov 13, 2023
1 parent 15bb8d7 commit da9cc40
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_secrets_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,5 +201,8 @@ def test_delete_secret_recovery_window(self, aws_secret: AwsSecret):
aws_secret.delete_secret(recovery_window_in_days=42)

async def test_read_secret(self, secret_under_test, aws_credentials):
secret = AwsSecret(aws_credentials=aws_credentials, secret_name=secret_under_test["secret_name"])
secret = AwsSecret(
aws_credentials=aws_credentials,
secret_name=secret_under_test["secret_name"],
)
assert await secret.read_secret() == secret_under_test["expected_value"]

0 comments on commit da9cc40

Please sign in to comment.