From 5de1532163a3247dd82201449d9f0c63012259fc Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola' Date: Thu, 30 Jun 2011 18:34:41 +0200 Subject: [PATCH] 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 --- Lib/test/test_ftplib.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py index 5734fd3453e..f73b8af5172 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):