From b32932bd136386e2abc4f6fd62b242eaa84dbc2e Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sun, 3 Dec 2017 14:00:11 +0100 Subject: [PATCH] Relax recurrence tests --- tests/storage/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/storage/__init__.py b/tests/storage/__init__.py index 30477f4..c93683f 100644 --- a/tests/storage/__init__.py +++ b/tests/storage/__init__.py @@ -348,4 +348,5 @@ class StorageTests(object): href, etag = s.upload(item) item2, etag2 = s.get(href) - assert item.hash == item2.hash + assert item2.raw.count('BEGIN:VEVENT') == 2 + assert 'RRULE' in item2.raw