[Zope3-checkins] CVS: Zope3/src/zope/app/fssync/tests -
test_committer.py:1.16.6.6
Jim Fulton
jim at zope.com
Wed Sep 17 09:01:20 EDT 2003
Update of /cvs-repository/Zope3/src/zope/app/fssync/tests
In directory cvs.zope.org:/tmp/cvs-serv24676/src/zope/app/fssync/tests
Modified Files:
Tag: parentgeddon-branch
test_committer.py
Log Message:
Reimplemented the ContainedProxy to be a persistent proxy.
Had to make some changes to zodb to support persistent proxies.
I've termorarily broken conflict resolution.
=== Zope3/src/zope/app/fssync/tests/test_committer.py 1.16.6.5 => 1.16.6.6 ===
--- Zope3/src/zope/app/fssync/tests/test_committer.py:1.16.6.5 Mon Sep 15 14:12:32 2003
+++ Zope3/src/zope/app/fssync/tests/test_committer.py Wed Sep 17 09:00:49 2003
@@ -102,7 +102,7 @@
def setBody(self, body):
old = self.context
- assert type(old) is dict
+ assert old.__class__ is dict
new = loads(body)
assert type(new) is dict
old.update(new)
More information about the Zope3-Checkins
mailing list