[Zodb-checkins] CVS: Zope3/lib/python/ZODB/tests - BasicStorage.py:1.14.6.2 TransactionalUndoVersionStorage.py:1.4.66.1

Tres Seaver tseaver@zope.com
Tue, 12 Feb 2002 15:56:27 -0500


Update of /cvs-repository/Zope3/lib/python/ZODB/tests
In directory cvs.zope.org:/tmp/cvs-serv19744/ZODB/tests

Modified Files:
      Tag: Zope-3x-branch
	BasicStorage.py TransactionalUndoVersionStorage.py 
Log Message:


  - Normalize file headers.

  - Fix violations of "80 character" rule.


=== Zope3/lib/python/ZODB/tests/BasicStorage.py 1.14.6.1 => 1.14.6.2 ===
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+##############################################################################
 """Run the basic tests for a storage as described in the official storage API
 
 The most complete and most out-of-date description of the interface is:
 http://www.zope.org/Documentation/Developer/Models/ZODB/ZODB_Architecture_Storage_Interface_Info.html
 
 All storages should be able to pass these tests.
+
+$Id$
 """
 
 from Transaction import Transaction


=== Zope3/lib/python/ZODB/tests/TransactionalUndoVersionStorage.py 1.4 => 1.4.66.1 ===
         version = 'one'
         revid_a = self._dostore(oid, data=MinPO(91))
-        revid_b = self._dostore(oid, revid=revid_a, data=MinPO(92), version=version)
-        revid_c = self._dostore(oid, revid=revid_b, data=MinPO(93), version=version)
+        revid_b = self._dostore(oid, revid=revid_a, data=MinPO(92),
+                                version=version)
+        revid_c = self._dostore(oid, revid=revid_b, data=MinPO(93),
+                                version=version)
         info=self._storage.undoInfo()
         tid=info[0]['id']
         self._storage.tpc_begin(self._transaction)