diff options
author | Giampaolo Rodola' <g.rodola@gmail.com> | 2011-06-30 16:34:41 (GMT) |
---|---|---|
committer | Giampaolo Rodola' <g.rodola@gmail.com> | 2011-06-30 16:34:41 (GMT) |
commit | 5de1532163a3247dd82201449d9f0c63012259fc (patch) | |
tree | 58f2076614eee8b58d796559a8b8192a0af1ed27 /Lib/test/test_ftplib.py | |
parent | 938f635acb65873a55adeae8f1e5351b3ac5ea74 (diff) | |
download | cpython-5de1532163a3247dd82201449d9f0c63012259fc.zip cpython-5de1532163a3247dd82201449d9f0c63012259fc.tar.gz cpython-5de1532163a3247dd82201449d9f0c63012259fc.tar.bz2 |
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
Diffstat (limited to 'Lib/test/test_ftplib.py')
-rw-r--r-- | Lib/test/test_ftplib.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py index 5734fd3..f73b8af 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): |