diff options
author | Joas Schilling <coding@schilljs.com> | 2017-01-10 12:28:55 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-01-10 12:28:55 +0100 |
commit | a70a081fffffaf092a97d563baaa95ff29c6e477 (patch) | |
tree | 32ec8fd042e5f02a32cbbd32c8e0e78800ad660d /apps/dav/tests/unit/CalDAV | |
parent | 97a63ad689fd00ef5b6bd09bd138dccb27562106 (diff) | |
download | nextcloud-server-a70a081fffffaf092a97d563baaa95ff29c6e477.tar.gz nextcloud-server-a70a081fffffaf092a97d563baaa95ff29c6e477.zip |
Make sure the used event type and the setting/filter are the same
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/dav/tests/unit/CalDAV')
-rw-r--r-- | apps/dav/tests/unit/CalDAV/Activity/Filter/TodoTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/dav/tests/unit/CalDAV/Activity/Filter/TodoTest.php b/apps/dav/tests/unit/CalDAV/Activity/Filter/TodoTest.php index 3c6ac2a5c55..54a5a6f5f9d 100644 --- a/apps/dav/tests/unit/CalDAV/Activity/Filter/TodoTest.php +++ b/apps/dav/tests/unit/CalDAV/Activity/Filter/TodoTest.php @@ -67,9 +67,9 @@ class TodoTest extends TestCase { public function dataFilterTypes() { return [ [[], []], - [['calendar_todos'], ['calendar_todos']], - [['calendar', 'calendar_event', 'calendar_todos'], ['calendar_todos']], - [['calendar', 'calendar_todos', 'files'], ['calendar_todos']], + [['calendar_todo'], ['calendar_todo']], + [['calendar', 'calendar_event', 'calendar_todo'], ['calendar_todo']], + [['calendar', 'calendar_todo', 'files'], ['calendar_todo']], ]; } |