diff options
author | Christian Heimes <christian@cheimes.de> | 2013-12-06 23:14:55 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-12-06 23:14:55 (GMT) |
commit | cd6f61137a1f294f3841fdd7fcb3a0bb5fb0a567 (patch) | |
tree | 66eb3947c1f5338b78706d3a9a00ecc6d02398c8 | |
parent | b82c915fa2e6f01b6ab458f36f36fad2a7cc6c1e (diff) | |
download | cpython-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.py | 10 |
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()") |