[Checkins] SVN: Products.ZopeVersionControl/trunk/ the quota parameter was removed

David Glick davidglick at onenw.org
Fri Jul 10 22:10:28 EDT 2009


Log message for revision 101803:
  the quota parameter was removed

Changed:
  U   Products.ZopeVersionControl/trunk/CHANGES.txt
  U   Products.ZopeVersionControl/trunk/Products/ZopeVersionControl/tests/common.py

-=-
Modified: Products.ZopeVersionControl/trunk/CHANGES.txt
===================================================================
--- Products.ZopeVersionControl/trunk/CHANGES.txt	2009-07-10 23:41:51 UTC (rev 101802)
+++ Products.ZopeVersionControl/trunk/CHANGES.txt	2009-07-11 02:10:26 UTC (rev 101803)
@@ -4,6 +4,9 @@
 1.0a2 (unreleased)
 ------------------
 
+    - Fixed tests to not use the DemoStorage quota parameter which was
+      removed.
+
     - Changed the Globals.InitializeClass import change in a backward
       compatible way.
 

Modified: Products.ZopeVersionControl/trunk/Products/ZopeVersionControl/tests/common.py
===================================================================
--- Products.ZopeVersionControl/trunk/Products/ZopeVersionControl/tests/common.py	2009-07-10 23:41:51 UTC (rev 101802)
+++ Products.ZopeVersionControl/trunk/Products/ZopeVersionControl/tests/common.py	2009-07-11 02:10:26 UTC (rev 101803)
@@ -39,7 +39,7 @@
     from Products.ZopeVersionControl.ZopeRepository import addRepository
     from ZODB import DB
     from ZODB.DemoStorage import DemoStorage
-    s = DemoStorage(quota=(1<<20))
+    s = DemoStorage()
     self.connection = DB( s ).open()
     try:
         r = self.connection.root()



More information about the Checkins mailing list