Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2019-11-20 22:53:30 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2019-11-20 22:53:30 +0300
commit621c87b1b96a2a677eb9e34aa2ebdcdbcb11133a (patch)
treed9a5292279aee59099d971d20f8ef425a60fbf7c /tests
parentb5ff47668b5e93d3dcc3198cc968e53a1294eed6 (diff)
Adjust SettingsService Test
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/php/unit/Service/SettingsServiceTest.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/php/unit/Service/SettingsServiceTest.php b/tests/php/unit/Service/SettingsServiceTest.php
index 9c772fa0..ce4878f1 100644
--- a/tests/php/unit/Service/SettingsServiceTest.php
+++ b/tests/php/unit/Service/SettingsServiceTest.php
@@ -57,7 +57,8 @@ class SettingsServiceTest extends TestCase {
'showHidden' => 1,
'sortOrder' => 'default',
'sortDirection' => false,
- 'userID' => $this->userId
+ 'userID' => $this->userId,
+ 'allDay' => false
];
$map = [
@@ -88,6 +89,13 @@ class SettingsServiceTest extends TestCase {
'various_sortDirection',
'',
false
+ ],
+ [
+ $this->userId,
+ $this->appName,
+ 'various_allDay',
+ '',
+ false
]
];