Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
httpresponseerror
  • Loading branch information
l0lawrence committed Jun 11, 2024
commit ad2977a08c70e90a780afe9cf64ce30b34030349
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ async def test_eg_dual_client_send_custom_event(self, **kwargs):

await basic_client.send(custom_event)

with pytest.raises(TypeError):
with pytest.raises(HttpResponseError):
await namespace_client.send(custom_event)

@pytest.mark.live_test_only
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def test_eg_dual_client_send_custom_event(self, **kwargs):

basic_client.send(custom_event)

with pytest.raises(TypeError):
with pytest.raises(HttpResponseError):
namespace_client.send(custom_event)

@pytest.mark.live_test_only
Expand Down