[Zodb-checkins] CVS: ZODB3/ZODB/tests - ReadOnlyStorage.py:1.8
Jeremy Hylton
jeremy at zope.com
Fri Oct 10 13:48:57 EDT 2003
Update of /cvs-repository/ZODB3/ZODB/tests
In directory cvs.zope.org:/tmp/cvs-serv5458
Modified Files:
ReadOnlyStorage.py
Log Message:
int -> bool
=== ZODB3/ZODB/tests/ReadOnlyStorage.py 1.7 => 1.8 ===
--- ZODB3/ZODB/tests/ReadOnlyStorage.py:1.7 Thu Oct 2 14:17:17 2003
+++ ZODB3/ZODB/tests/ReadOnlyStorage.py Fri Oct 10 13:48:57 2003
@@ -26,7 +26,7 @@
def _make_readonly(self):
self._storage.close()
- self.open(read_only=1)
+ self.open(read_only=True)
self.assert_(self._storage.isReadOnly())
def checkReadMethods(self):
More information about the Zodb-checkins
mailing list