Skip to content

Commit 67ab05d

Browse files
committed
test: Fix getaddrinfo tests
1 parent 2116189 commit 67ab05d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_dns.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ def test_getaddrinfo_17(self):
123123
self._test_getaddrinfo(b'localhost', 'http', type=socket.SOCK_STREAM)
124124

125125
def test_getaddrinfo_18(self):
126-
self._test_getaddrinfo(b'localhost', 'http')
127-
self._test_getaddrinfo(b'localhost', 'http', type=socket.SOCK_STREAM)
126+
self._test_getaddrinfo('localhost', b'http')
127+
self._test_getaddrinfo('localhost', b'http', type=socket.SOCK_STREAM)
128128

129129
######
130130

0 commit comments

Comments
 (0)