Skip to content
Merged
Changes from all commits
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
20 changes: 10 additions & 10 deletions test/test_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,19 +415,19 @@ async def test_single_connections(self):
return await super().test_single_connections()

async def test_multiple_connections(self):
return await super().test_single_connections()
return await super().test_multiple_connections()

async def test_disconnection(self):
return await super().test_single_connections()
return await super().test_disconnection()

async def test_edges_disconnection(self):
return await super().test_single_connections()
return await super().test_edges_disconnection()

async def test_edges_client_orphan(self):
return await super().test_single_connections()
return await super().test_edges_client_orphan()

async def test_edges_server_orphan(self):
return await super().test_single_connections()
return await super().test_edges_server_orphan()

async def test_response_udp(self):
return await super().test_response_udp()
Expand Down Expand Up @@ -488,19 +488,19 @@ async def test_single_connections(self):
return await super().test_single_connections()

async def test_multiple_connections(self):
return await super().test_single_connections()
return await super().test_multiple_connections()

async def test_disconnection(self):
return await super().test_single_connections()
return await super().test_disconnection()

async def test_edges_disconnection(self):
return await super().test_single_connections()
return await super().test_edges_disconnection()

async def test_edges_client_orphan(self):
return await super().test_single_connections()
return await super().test_edges_client_orphan()

async def test_edges_server_orphan(self):
return await super().test_single_connections()
return await super().test_edges_server_orphan()

async def test_response_udp(self):
return await super().test_response_udp()
Expand Down