summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-12-06 23:14:55 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-12-06 23:14:55 (GMT)
commitcd6f61137a1f294f3841fdd7fcb3a0bb5fb0a567 (patch)
tree66eb3947c1f5338b78706d3a9a00ecc6d02398c8
parentb82c915fa2e6f01b6ab458f36f36fad2a7cc6c1e (diff)
downloadcpython-cd6f61137a1f294f3841fdd7fcb3a0bb5fb0a567.zip
cpython-cd6f61137a1f294f3841fdd7fcb3a0bb5fb0a567.tar.gz
cpython-cd6f61137a1f294f3841fdd7fcb3a0bb5fb0a567.tar.bz2
copy 'n paste typo (thx Antoine)
-rw-r--r--Lib/test/test_asyncio/test_events.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py
index f890878..1c2560c 100644
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -1393,19 +1393,19 @@ if sys.platform == 'win32':
return windows_events.ProactorEventLoop()
def test_create_ssl_connection(self):
- raise unittest.SkipTest("IocpEventLoop imcompatible with SSL")
+ raise unittest.SkipTest("IocpEventLoop incompatible with SSL")
def test_create_server_ssl(self):
- raise unittest.SkipTest("IocpEventLoop imcompatible with SSL")
+ raise unittest.SkipTest("IocpEventLoop incompatible with SSL")
def test_create_server_ssl_verify_failed(self):
- raise unittest.SkipTest("IocpEventLoop imcompatible with SSL")
+ raise unittest.SkipTest("IocpEventLoop incompatible with SSL")
def test_create_server_ssl_match_failed(self):
- raise unittest.SkipTest("IocpEventLoop imcompatible with SSL")
+ raise unittest.SkipTest("IocpEventLoop incompatible with SSL")
def test_create_server_ssl_verified(self):
- raise unittest.SkipTest("IocpEventLoop imcompatible with SSL")
+ raise unittest.SkipTest("IocpEventLoop incompatible with SSL")
def test_reader_callback(self):
raise unittest.SkipTest("IocpEventLoop does not have add_reader()")