From 57c47bc0a7b1f597b3b8d8621737ece7f7ec9bb2 Mon Sep 17 00:00:00 2001 From: Yeison Cardona Date: Tue, 3 Jun 2025 17:59:29 -0500 Subject: [PATCH] Fix IPv4/IPv6 connection tests to call proper base methods --- test/test_connection.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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()