From de510148a0c8ff57de05c7875d14863f4c8b3069 Mon Sep 17 00:00:00 2001 From: Unrud Date: Wed, 3 Aug 2016 14:35:50 +0200 Subject: [PATCH] *args and **kwargs for test collection --- radicale/tests/custom/storage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radicale/tests/custom/storage.py b/radicale/tests/custom/storage.py index 9829673..63a1713 100644 --- a/radicale/tests/custom/storage.py +++ b/radicale/tests/custom/storage.py @@ -27,5 +27,5 @@ from radicale import storage # TODO: make something more in this collection (and test it) class Collection(storage.Collection): """Collection stored in a folder.""" - def __init__(self, path, principal=False): - super().__init__(path, principal) + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs)