diff --git a/test/test_connection.py b/test/test_connection.py index 2e1c02a..f2111d3 100644 --- a/test/test_connection.py +++ b/test/test_connection.py @@ -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() @@ -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()