#8594: fix ResourceWarning in test_ftplib.py - patch by Nadeem Vawda.
This commit is contained in:
parent
684d78cfb0
commit
7a2114719d
|
@ -619,8 +619,8 @@ class TestFTPClass(TestCase):
|
|||
def test_source_address_passive_connection(self):
|
||||
port = support.find_unused_port()
|
||||
self.client.source_address = (HOST, port)
|
||||
sock = self.client.transfercmd('list')
|
||||
self.assertEqual(sock.getsockname()[1], port)
|
||||
with self.client.transfercmd('list') as sock:
|
||||
self.assertEqual(sock.getsockname()[1], port)
|
||||
|
||||
def test_parse257(self):
|
||||
self.assertEqual(ftplib.parse257('257 "/foo/bar"'), '/foo/bar')
|
||||
|
|
Loading…
Reference in New Issue