From: Giampaolo Rodola' Date: Fri, 12 Apr 2013 16:28:15 +0000 (+0200) Subject: attempt to fix bb failure as per http://bugs.python.org/issue17675#msg186595 X-Git-Tag: v3.4.0a1~971 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ca49361131ddeabe584b5fa3b53250d5ce9123c;p=python attempt to fix bb failure as per http://bugs.python.org/issue17675#msg186595 --- diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 9b6d18448a..4693ea56b8 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -657,9 +657,9 @@ class GeneralModuleTests(unittest.TestCase): self.assertIn('family=%i' % socket.AF_INET, repr(s)) self.assertIn('type=%i' % socket.SOCK_STREAM, repr(s)) self.assertIn('proto=0', repr(s)) - self.assertIn('laddr', repr(s)) self.assertNotIn('raddr', repr(s)) s.bind(('127.0.0.1', 0)) + self.assertIn('laddr', repr(s)) self.assertIn(str(s.getsockname()), repr(s)) self.assertIn('[closed]', repr(s)) self.assertNotIn('laddr', repr(s))