Skip to content

Commit

Permalink
Try passing in the region in another place
Browse files Browse the repository at this point in the history
  • Loading branch information
WillGibson committed Nov 12, 2024
1 parent 926118b commit 415b28e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postgres/tests/test_manage_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def test_create_or_update_user_secret(self):

@mock_aws
def test_create_or_update_user_secret_overwrites(self):
ssm = boto3.client("ssm")
ssm = boto3.client("ssm", region_name="eu-west-2")
user_secret_name = "/test/secret"
user_secret_string = {"username": "test_user", "password": "test_password"}
ssm.put_parameter(Name=user_secret_name, Value="blah", Type="String")
Expand Down

0 comments on commit 415b28e

Please sign in to comment.