[Python-checkins] cpython: copy 'n paste typo (thx Antoine)

christian.heimes python-checkins at python.org
Sat Dec 7 00:15:04 CET 2013


http://hg.python.org/cpython/rev/7ce3cd4dd561
changeset:   87800:7ce3cd4dd561
user:        Christian Heimes <christian at cheimes.de>
date:        Sat Dec 07 00:14:55 2013 +0100
summary:
  copy 'n paste typo (thx Antoine)

files:
  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
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -1393,19 +1393,19 @@
             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()")

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list