[Zodb-checkins] SVN: ZODB/branches/3.10/src/ZODB/tests/testConnectionSavepoint.txt Fixed a spurious test failure due to an change in an exception's

jim cvs-admin at zope.org
Sat May 19 16:00:44 UTC 2012


Log message for revision 126388:
  Fixed a spurious test failure due to an change in an exception's
  string representation.
  

Changed:
  U   ZODB/branches/3.10/src/ZODB/tests/testConnectionSavepoint.txt

-=-
Modified: ZODB/branches/3.10/src/ZODB/tests/testConnectionSavepoint.txt
===================================================================
--- ZODB/branches/3.10/src/ZODB/tests/testConnectionSavepoint.txt	2012-05-19 15:49:30 UTC (rev 126387)
+++ ZODB/branches/3.10/src/ZODB/tests/testConnectionSavepoint.txt	2012-05-19 16:00:40 UTC (rev 126388)
@@ -182,15 +182,15 @@
     >>> root['bob-balance']
     100.0
 
-    >>> savepoint2.rollback()
+    >>> savepoint2.rollback() # doctest: +ELLIPSIS
     Traceback (most recent call last):
     ...
-    InvalidSavepointRollbackError
+    InvalidSavepointRollbackError...
 
-    >>> savepoint1.rollback()
+    >>> savepoint1.rollback() # doctest: +ELLIPSIS
     Traceback (most recent call last):
     ...
-    InvalidSavepointRollbackError
+    InvalidSavepointRollbackError...
 
     >>> transaction.abort()
 



More information about the Zodb-checkins mailing list