From 237931ebb41d4b59361d9cdbcd7f2c21ff41c1d2 Mon Sep 17 00:00:00 2001
From: Julien Muchembled <jm@nexedi.com>
Date: Mon, 26 Oct 2009 13:10:16 +0000
Subject: [PATCH] Unit tests: DemoStorage does not accept 'quota' parameter
 anymore on Zope 2.12

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@30007 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5Type/tests/custom_zodb.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/product/ERP5Type/tests/custom_zodb.py b/product/ERP5Type/tests/custom_zodb.py
index a7f566d079..1c9ec27007 100644
--- a/product/ERP5Type/tests/custom_zodb.py
+++ b/product/ERP5Type/tests/custom_zodb.py
@@ -41,6 +41,6 @@ else:
 if save:
   Storage = FileStorage(data_fs_path)
 elif load:
-  Storage = DemoStorage(base=FileStorage(data_fs_path), quota=(1<<20))
+  Storage = DemoStorage(base=FileStorage(data_fs_path))
 else:
-  Storage = DemoStorage(quota=(1<<20))
+  Storage = DemoStorage()
-- 
2.30.9