SVN: ZODB/branches/3.9/src/ZEO/tests/testZEO.py de-unixify

Jim Fulton <[email protected]> Tue, 21 Sep 2010 05:57:30 -0400 (EDT)
Newsgroups gmane.comp.python.zope.zodb.cvs
Message-ID <20100921095730.4E695941C0__49234.3793659986$1285063055$gmane$org@cvs.zope.org>
Log message for revision 116701:
  de-unixify
  

Changed:
  U   ZODB/branches/3.9/src/ZEO/tests/testZEO.py

-=-
Modified: ZODB/branches/3.9/src/ZEO/tests/testZEO.py
===================================================================
--- ZODB/branches/3.9/src/ZEO/tests/testZEO.py	2010-09-21 09:13:31 UTC (rev 116700)
+++ ZODB/branches/3.9/src/ZEO/tests/testZEO.py	2010-09-21 09:57:29 UTC (rev 116701)
@@ -1336,7 +1336,7 @@
     >>> class CM(ZEO.zrpc.client.ConnectionManager):
     ...     sync_wait = 1
     ...     _start_asyncore_loop = lambda self: None
-    >>> cm = CM('', object())
+    >>> cm = CM(('', 0), object())
 
     Calling connect results in an exception being raised, instead of hanging
     indefinitely when the thread dies without setting up the connection.