[Zodb-checkins]
SVN: ZODB/branches/jim-zeo-blob/src/ZEO/tests/testZEO.py Fixed test.
Jim Fulton
jim at zope.com
Thu May 17 17:27:11 EDT 2007
Log message for revision 75822:
Fixed test.
Changed:
U ZODB/branches/jim-zeo-blob/src/ZEO/tests/testZEO.py
-=-
Modified: ZODB/branches/jim-zeo-blob/src/ZEO/tests/testZEO.py
===================================================================
--- ZODB/branches/jim-zeo-blob/src/ZEO/tests/testZEO.py 2007-05-17 21:08:25 UTC (rev 75821)
+++ ZODB/branches/jim-zeo-blob/src/ZEO/tests/testZEO.py 2007-05-17 21:27:11 UTC (rev 75822)
@@ -543,7 +543,7 @@
somedata_path = os.path.join(self.blob_cache_dir, 'somedata')
somedata = open(somedata_path, 'w+b')
for i in range(1000000):
- somedata.write("%s\n")
+ somedata.write("%s\n" % i)
somedata.seek(0)
blob = Blob()
More information about the Zodb-checkins
mailing list