Commit 615c4900 authored by Jason Madden's avatar Jason Madden

test__socket_close specifies AF_INET sockets so make sure and use an AF_INET...

test__socket_close specifies AF_INET sockets so make sure and use an AF_INET address in the server. This affects only Windows.
parent b4dd21e0
......@@ -16,7 +16,7 @@ class Test(greentest.TestCase):
error_fatal = False
def setUp(self):
self.server = server.StreamServer(('', 0), readall)
self.server = server.StreamServer(('127.0.0.1', 0), readall)
self.server.start()
def tearDown(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment