Skip to content

Commit

Permalink
feat: sns
Browse files Browse the repository at this point in the history
  • Loading branch information
totalimmersion committed Oct 23, 2023
1 parent 7e02134 commit 803c147
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stream_chat/tests/async_chat/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ async def test_check_push(
async def test_check_sqs(self, client: StreamChatAsync):
response = await client.check_sqs("key", "secret", "https://foo.com/bar")
assert response["status"] == "error"
assert "invalid SQS url" in response["error"]
assert "publishing the message failed." in response["error"]

async def test_check_sns(self, client: StreamChatAsync):
response = await client.check_sns(
Expand Down
2 changes: 1 addition & 1 deletion stream_chat/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ def test_check_push(self, client: StreamChat, channel: Channel, random_user: Dic
def test_check_sqs(self, client: StreamChat):
response = client.check_sqs("key", "secret", "https://foo.com/bar")
assert response["status"] == "error"
assert "invalid SQS url" in response["error"]
assert "publishing the message failed." in response["error"]

def test_check_sns(self, client: StreamChat):
response = client.check_sns(
Expand Down

0 comments on commit 803c147

Please sign in to comment.