From de383289ea4b029028f2ca0bf7e2e27441b99025 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 12 Jan 2017 11:51:31 +0100 Subject: [PATCH] Issue #25591: Fix test_imaplib if ssl miss --- Lib/test/test_imaplib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_imaplib.py b/Lib/test/test_imaplib.py index 6e4a90fc25..a29b40ac23 100644 --- a/Lib/test/test_imaplib.py +++ b/Lib/test/test_imaplib.py @@ -477,7 +477,7 @@ class NewIMAPTests(NewIMAPTestsMixin, unittest.TestCase): @unittest.skipUnless(ssl, "SSL not available") class NewIMAPSSLTests(NewIMAPTestsMixin, unittest.TestCase): - imap_class = imaplib.IMAP4_SSL + imap_class = IMAP4_SSL server_class = SecureTCPServer def test_ssl_raises(self): -- 2.40.0