test_iputil: remove the test that only works on linux, since we're using the cross-unix 'get_local_addresses_async' anyways. This should allow the tests to pass on OS-X

This commit is contained in:
Brian Warner 2007-03-29 11:21:17 -07:00
parent 3c757a524f
commit 93c4a5ebb0

View File

@ -11,8 +11,3 @@ class ListAddresses(unittest.TestCase):
d.addCallbacks(_check)
return d
def test_list(self):
addresses = iputil.get_local_addresses()
self.failUnless(len(addresses) >= 1) # always have localhost
self.failUnless("127.0.0.1" in addresses)