lint
This commit is contained in:
parent
66c9d15ca8
commit
0e825a5048
2 changed files with 3 additions and 3 deletions
|
|
@ -378,11 +378,11 @@ def test_describe_secret_with_arn():
|
|||
conn = boto3.client("secretsmanager", region_name="us-west-2")
|
||||
results = conn.create_secret(Name="test-secret", SecretString="foosecret")
|
||||
|
||||
secret_description = conn.describe_secret(SecretId=results['ARN'])
|
||||
secret_description = conn.describe_secret(SecretId=results["ARN"])
|
||||
|
||||
assert secret_description # Returned dict is not empty
|
||||
assert secret_description["Name"] == ("test-secret")
|
||||
assert secret_description["ARN"] != results['ARN']
|
||||
assert secret_description["ARN"] != results["ARN"]
|
||||
|
||||
|
||||
@mock_secretsmanager
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue