summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-06-14 20:43:02 (GMT)
committerGitHub <noreply@github.com>2017-06-14 20:43:02 (GMT)
commit7895a0585b4b6a1c8082d17227307c6ce2c8bb8b (patch)
tree222f7ba351cd2f489582b1e27e164f52dfbae3cf /Lib/test
parenta3afdca2190201bf6572435226dd3f8668139002 (diff)
downloadcpython-7895a0585b4b6a1c8082d17227307c6ce2c8bb8b.zip
cpython-7895a0585b4b6a1c8082d17227307c6ce2c8bb8b.tar.gz
cpython-7895a0585b4b6a1c8082d17227307c6ce2c8bb8b.tar.bz2
bpo-30231: Remove skipped test_imaplib tests (#1419) (#2193)
The public cyrus.andrew.cmu.edu IMAP server (port 993) doesn't accept TLS connection using our self-signed x509 certificate. Remove the two tests which are already skipped.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_imaplib.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/Lib/test/test_imaplib.py b/Lib/test/test_imaplib.py
index 7a821f3..9990355 100644
--- a/Lib/test/test_imaplib.py
+++ b/Lib/test/test_imaplib.py
@@ -917,23 +917,6 @@ class RemoteIMAP_SSLTest(RemoteIMAPTest):
_server = self.imap_class(self.host, self.port)
self.check_logincapa(_server)
- @unittest.skipIf(True,
- "bpo-30175: FIXME: cyrus.andrew.cmu.edu doesn't accept "
- "our randomly generated client x509 certificate anymore")
- def test_logincapa_with_client_certfile(self):
- with transient_internet(self.host):
- _server = self.imap_class(self.host, self.port, certfile=CERTFILE)
- self.check_logincapa(_server)
-
- @unittest.skipIf(True,
- "bpo-30175: FIXME: cyrus.andrew.cmu.edu doesn't accept "
- "our randomly generated client x509 certificate anymore")
- def test_logincapa_with_client_ssl_context(self):
- with transient_internet(self.host):
- _server = self.imap_class(
- self.host, self.port, ssl_context=self.create_ssl_context())
- self.check_logincapa(_server)
-
def test_logout(self):
with transient_internet(self.host):
_server = self.imap_class(self.host, self.port)