]> source.dussan.org Git - nextcloud-server.git/commitdiff
Use contacts instead of logreader
authorDaniel Kesselberg <mail@danielkesselberg.de>
Mon, 28 Jan 2019 15:12:09 +0000 (16:12 +0100)
committerDaniel Kesselberg <mail@danielkesselberg.de>
Tue, 19 Feb 2019 20:03:07 +0000 (21:03 +0100)
Logreader is not distributed by app store because shipped by default.

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
tests/Core/Command/Apps/AppsEnableTest.php

index 2d0ffd9f958d05b0ef3542dd2a25a6439b92b9ed..bfec710f1bcfbf4b5d241dc9f7e59e582748dd99 100644 (file)
@@ -83,11 +83,11 @@ class AppsEnableTest extends TestCase {
                        [['comments'], ['admin'], 1, "comments can't be enabled for groups"],
 
                        [['updatenotification'], ['admin'], 0, 'updatenotification enabled for groups: admin'],
-                       [['updatenotification', 'logreader'], ['admin'], 0, "updatenotification enabled for groups: admin\nlogreader enabled for groups: admin"],
+                       [['updatenotification', 'contacts'], ['admin'], 0, "updatenotification enabled for groups: admin\ncontacts enabled for groups: admin"],
 
                        [['updatenotification'], ['admin', 'invalid_group'], 0, 'updatenotification enabled for groups: admin'],
-                       [['updatenotification', 'logreader'], ['admin', 'invalid_group'], 0, "updatenotification enabled for groups: admin\nlogreader enabled for groups: admin"],
-                       [['updatenotification', 'logreader', 'invalid_app'], ['admin', 'invalid_group'], 1, "updatenotification enabled for groups: admin\nlogreader enabled for groups: admin\nCould not download app invalid_app"],
+                       [['updatenotification', 'contacts'], ['admin', 'invalid_group'], 0, "updatenotification enabled for groups: admin\ncontacts enabled for groups: admin"],
+                       [['updatenotification', 'contacts', 'invalid_app'], ['admin', 'invalid_group'], 1, "updatenotification enabled for groups: admin\ncontacts enabled for groups: admin\nCould not download app invalid_app"],
                ];
        }
 }