[Checkins] SVN: transaction/branches/chrism-py3/transaction/tests/savepoint.txt fix failures; all tests pass although spurious logging output is still sent to the console that looks like failure

Chris McDonough chrism at plope.com
Mon Sep 26 06:20:42 EST 2011


Log message for revision 122945:
  fix failures; all tests pass although spurious logging output is still sent to the console that looks like failure

Changed:
  U   transaction/branches/chrism-py3/transaction/tests/savepoint.txt

-=-
Modified: transaction/branches/chrism-py3/transaction/tests/savepoint.txt
===================================================================
--- transaction/branches/chrism-py3/transaction/tests/savepoint.txt	2011-09-26 10:33:42 UTC (rev 122944)
+++ transaction/branches/chrism-py3/transaction/tests/savepoint.txt	2011-09-26 11:20:42 UTC (rev 122945)
@@ -207,7 +207,7 @@
     >>> dm_no_sp['name'] = 'bob'
     >>> transaction.commit()
     >>> dm_no_sp['name'] = 'sally'
-    >>> savepoint = transaction.savepoint() #doctest +IGNORE_EXCEPTION_DETAIL
+    >>> transaction.savepoint() #doctest: +IGNORE_EXCEPTION_DETAIL
     Traceback (most recent call last):
     ...
     TypeError: ('Savepoints unsupported', {'name': 'bob'})
@@ -228,7 +228,7 @@
 
     >>> dm_no_sp['name'] = 'sam'
     >>> savepoint = transaction.savepoint(1)
-    >>> savepoint.rollback() #doctest +IGNORE_EXCEPTION_DETAIL
+    >>> savepoint.rollback() #doctest: +IGNORE_EXCEPTION_DETAIL
     Traceback (most recent call last): 
     ...
     TypeError: ('Savepoints unsupported', {'name': 'sam'})
@@ -262,7 +262,7 @@
 
     >>> dm_no_sp['name'] = 'sally'
     >>> dm['name'] = 'sally'
-    >>> savepoint = transaction.savepoint() # doctest +IGNORE_EXCEPTION_DETAIL
+    >>> savepoint = transaction.savepoint() # doctest: +IGNORE_EXCEPTION_DETAIL
     Traceback (most recent call last):
     ...
     TypeError: ('Savepoints unsupported', {'name': 'sue'})



More information about the checkins mailing list