From: Giampaolo Rodola' Date: Thu, 30 Jun 2011 16:34:41 +0000 (+0200) Subject: Issue 12139: ftplib - remove 'post CCC' test to fix various buildot failures due... X-Git-Tag: v3.3.0a1~1996 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5de1532163a3247dd82201449d9f0c63012259fc;p=python Issue 12139: ftplib - remove 'post CCC' test to fix various buildot failures due to dummy test server not properly handling SSL shutdown(), see http://bugs.python.org/msg139499 --- diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py index 5734fd3453..f73b8af517 100644 --- a/Lib/test/test_ftplib.py +++ b/Lib/test/test_ftplib.py @@ -887,8 +887,6 @@ class TestTLS_FTPClass(TestCase): self.assertIsInstance(self.client.sock, ssl.SSLSocket) self.client.ccc() self.assertRaises(ValueError, self.client.sock.unwrap) - self.client.sendcmd('noop') - self.client.quit() class TestTimeouts(TestCase):