[Zope3-checkins] CVS: Zope3/src/zodb/storage/tests - undo.py:1.11

Marius Gedminas mgedmin@codeworks.lt
Thu, 10 Apr 2003 03:27:31 -0400


Update of /cvs-repository/Zope3/src/zodb/storage/tests
In directory cvs.zope.org:/tmp/cvs-serv3355/src/zodb/storage/tests

Modified Files:
	undo.py 
Log Message:
Replaced 'assert 0, msg' with 'self.fail(msg)' in a unit test.


=== Zope3/src/zodb/storage/tests/undo.py 1.10 => 1.11 ===
--- Zope3/src/zodb/storage/tests/undo.py:1.10	Wed Apr  9 14:01:43 2003
+++ Zope3/src/zodb/storage/tests/undo.py	Thu Apr 10 03:27:30 2003
@@ -649,4 +649,4 @@
                 eq(txn.description, descrip)
                 break
         else:
-            assert 0, 'transaction not found'
+            self.fail('transaction not found')