From: Christian Heimes Date: Sun, 15 Dec 2013 18:50:13 +0000 (+0100) Subject: fixed test_ftplib X-Git-Tag: v3.4.0b2~213 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b2a794d235afd5da70ea1bc1c7f28a8379440a5b;p=python fixed test_ftplib --- diff --git a/Lib/test/test_ftplib.py b/Lib/test/test_ftplib.py index 7f3bebfa55..d0fd92ee1a 100644 --- a/Lib/test/test_ftplib.py +++ b/Lib/test/test_ftplib.py @@ -927,7 +927,7 @@ class TestTLS_FTPClass(TestCase): self.client.ccc() self.assertRaises(ValueError, self.client.sock.unwrap) - @unittest.skipUnless(HAS_SNI, 'No SNI support in ssl module') + @skipUnless(HAS_SNI, 'No SNI support in ssl module') def test_check_hostname(self): self.client.quit() ctx = ssl.SSLContext(ssl.PROTOCOL_TLSv1)