[Zope3-checkins] CVS: Zope3/src/zope/app/undo/tests -
test_zodbundomanager.py:1.2
Philipp von Weitershausen
philikon at philikon.de
Thu Mar 18 09:33:22 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/undo/tests
In directory cvs.zope.org:/tmp/cvs-serv25980/tests
Modified Files:
test_zodbundomanager.py
Log Message:
Understood where and how and why we and up with a '/' for a user's path in
a transactional note. Commented that, fixed ZODBUndoManager and adjusted
the tests. This is just temporary until we have the new simplified undo
model.
=== Zope3/src/zope/app/undo/tests/test_zodbundomanager.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/undo/tests/test_zodbundomanager.py:1.1 Mon Mar 1 09:16:56 2004
+++ Zope3/src/zope/app/undo/tests/test_zodbundomanager.py Thu Mar 18 09:33:22 2004
@@ -24,16 +24,16 @@
def dict(**kw): return kw
testdata = [
- dict(id='1', user_name='jim', time=time(), description='des 1'),
- dict(id='2', user_name='jim', time=time(), description='des 2'),
- dict(id='3', user_name='anthony', time=time(), description='des 3'),
- dict(id='4', user_name='jim', time=time(), description='des 4'),
- dict(id='5', user_name='anthony', time=time(), description='des 5'),
- dict(id='6', user_name='anthony', time=time(), description='des 6'),
- dict(id='7', user_name='jim', time=time(), description='des 7'),
- dict(id='8', user_name='anthony', time=time(), description='des 8'),
- dict(id='9', user_name='jim', time=time(), description='des 9'),
- dict(id='10', user_name='jim', time=time(), description='des 10'),
+ dict(id='1', user_name='/ jim', time=time(), description='des 1'),
+ dict(id='2', user_name='/ jim', time=time(), description='des 2'),
+ dict(id='3', user_name='/ anthony', time=time(), description='des 3'),
+ dict(id='4', user_name='/ jim', time=time(), description='des 4'),
+ dict(id='5', user_name='/ anthony', time=time(), description='des 5'),
+ dict(id='6', user_name='/ anthony', time=time(), description='des 6'),
+ dict(id='7', user_name='/ jim', time=time(), description='des 7'),
+ dict(id='8', user_name='/ anthony', time=time(), description='des 8'),
+ dict(id='9', user_name='/ jim', time=time(), description='des 9'),
+ dict(id='10', user_name='/ jim', time=time(), description='des 10'),
]
testdata.reverse()
More information about the Zope3-Checkins
mailing list