Skip to content

Commit

Permalink
bpo-39148: fixup to account for IPV6_ENABLED being moved (GH-20170)
Browse files Browse the repository at this point in the history
  • Loading branch information
njsmith authored May 18, 2020
1 parent 442634c commit 58205a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_asyncio/test_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -1259,7 +1259,7 @@ def datagram_received(self, data, addr):
def test_create_datagram_endpoint(self):
self._test_create_datagram_endpoint(('127.0.0.1', 0), socket.AF_INET)

@unittest.skipUnless(support.IPV6_ENABLED, 'IPv6 not supported or enabled')
@unittest.skipUnless(socket_helper.IPV6_ENABLED, 'IPv6 not supported or enabled')
def test_create_datagram_endpoint_ipv6(self):
self._test_create_datagram_endpoint(('::1', 0), socket.AF_INET6)

Expand Down

0 comments on commit 58205a0

Please sign in to comment.