[Zope3-checkins] CVS: Zope3/src/zodb/storage/tests - packable.py:1.12
Jeremy Hylton
jeremy@zope.com
Fri, 16 May 2003 18:54:17 -0400
Update of /cvs-repository/Zope3/src/zodb/storage/tests
In directory cvs.zope.org:/tmp/cvs-serv31839/src/zodb/storage/tests
Modified Files:
packable.py
Log Message:
Get more ZEO tests working.
=== Zope3/src/zodb/storage/tests/packable.py 1.11 => 1.12 ===
--- Zope3/src/zodb/storage/tests/packable.py:1.11 Fri May 16 17:38:50 2003
+++ Zope3/src/zodb/storage/tests/packable.py Fri May 16 18:53:47 2003
@@ -272,7 +272,7 @@
# Iterate over the storage to make sure it's sane, but not every
# storage supports iterators.
- if not IUndoStorage.isImplementedBy(self._storage):
+ if not hasattr(self._storage, "iterator"):
return
iter = self._storage.iterator()