Commit 237931eb authored by Julien Muchembled's avatar Julien Muchembled

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
parent 8884d12f
......@@ -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()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment