8000 GH-98388: Add tests for happy eyeballs and its internal workings by twisteroidambassador · Pull Request #98389 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-98388: Add tests for happy eyeballs and its internal workings #98389

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Prev Previous commit
Next Next commit
Rename _interleave_addrinfos tests to match the method being tested.
  • Loading branch information
twisteroidambassador committed Oct 18, 2022
commit 8270e6976665ba24fbe927a9b0ac1fdb55a3cee0
2 changes: 1 addition & 1 deletion Lib/test/test_asyncio/test_base_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def test_ipaddr_info_no_inet_pton(self, m_socket):
socket.SOCK_STREAM,
socket.IPPROTO_TCP))

def test_interleave_ipaddrs(self):
def test_interleave_addrinfos(self):
SIX_A = (socket.AF_INET6, 0, 0, '', ('2001:db8::1', 1))
SIX_B = (socket.AF_INET6, 0, 0, '', ('2001:db8::2', 2))
SIX_C = (socket.AF_INET6, 0, 0, '', ('2001:db8::3', 3))
Expand Down
0