[Zodb-checkins] CVS: ZODB3/Tools - fstest.py:1.5.2.1

Jeremy Hylton jeremy@zope.com
Tue, 24 Sep 2002 17:06:07 -0400


Update of /cvs-repository/ZODB3/Tools
In directory cvs.zope.org:/tmp/cvs-serv5789

Modified Files:
      Tag: ZODB3-3_1-branch
	fstest.py 
Log Message:
Backport from trunk: Remove check for oid serialno matching transaction id.


=== ZODB3/Tools/fstest.py 1.5 => 1.5.2.1 ===
--- ZODB3/Tools/fstest.py:1.5	Thu Aug  1 11:28:38 2002
+++ ZODB3/Tools/fstest.py	Tue Sep 24 17:06:06 2002
@@ -181,11 +181,6 @@
     plen = U64(_plen)
     dlen = DREC_HDR_LEN + (plen or 8)
 
-    if serial != tid:
-        raise FormatError("%s object serialno %s does not match"
-                          "transaction id %s" % (pos, hexify(serial),
-                                                 hexify(tid)))
-
     if vlen:
         dlen = dlen + 16 + vlen
         file.seek(8, 1)