]> git.pld-linux.org Git - packages/python3.git/blob - python3-tests.patch
- build with libtirpc+libnsl 1.x; release 2
[packages/python3.git] / python3-tests.patch
1 --- Python-3.7.4/Lib/test/test_imaplib.py~      2019-07-08 20:03:50.000000000 +0200
2 +++ Python-3.7.4/Lib/test/test_imaplib.py       2019-08-05 19:25:53.119629647 +0200
3 @@ -73,7 +73,7 @@ class TestImaplib(unittest.TestCase):
4  
5      def test_imap4_host_default_value(self):
6          # Check whether the IMAP4_PORT is truly unavailable.
7 -        with socket.socket() as s:
8 +        with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
9              try:
10                  s.connect(('', imaplib.IMAP4_PORT))
11                  self.skipTest(
12 @@ -84,7 +84,7 @@ class TestImaplib(unittest.TestCase):
13          # This is the exception that should be raised.
14          expected_errnos = support.get_socket_conn_refused_errs()
15          with self.assertRaises(OSError) as cm:
16 -            imaplib.IMAP4()
17 +            imaplib.IMAP4('0.0.0.0')
18          self.assertIn(cm.exception.errno, expected_errnos)
19  
20  
This page took 0.028394 seconds and 3 git commands to generate.