Skip to content

Commit

Permalink
fix(test): change request url to mock domain
Browse files Browse the repository at this point in the history
  • Loading branch information
lakkeger committed Feb 16, 2024
1 parent 2eb83de commit 5bceaf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def test_failure_sns_to_ses_integration():
s3.upload_file(file, Bucket=source_bucket, Key=key)

def _check_message():
response = requests.get("http://localhost:4566/_aws/ses")
response = requests.get("http://localhost.localstack.cloud:4566/_aws/ses")
messages = response.json()["messages"]
assert key in messages[-1]["Body"]["text_part"]

Expand Down

0 comments on commit 5bceaf3

Please sign in to comment.