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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSander Ruitenbeek <s.ruitenbeek@getgoing.nl>2020-02-17 11:42:22 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-24 17:30:45 +0300
commit3d9cd00c7b0c5899db24e29dc088b9d885338939 (patch)
tree34dfa33de74c0e504be6bf269e4ad1cd4607c6e9 /tests/Core
parentdefcbd9169b670dc4731e98aaec4ea57c6d0d44a (diff)
Updated test to check for already enabled apps
Signed-off-by: Sander Ruitenbeek <s.ruitenbeek@getgoing.nl>
Diffstat (limited to 'tests/Core')
-rw-r--r--tests/Core/Command/Apps/AppsEnableTest.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Core/Command/Apps/AppsEnableTest.php b/tests/Core/Command/Apps/AppsEnableTest.php
index a8aa4c434f0..b5d781aa125 100644
--- a/tests/Core/Command/Apps/AppsEnableTest.php
+++ b/tests/Core/Command/Apps/AppsEnableTest.php
@@ -75,6 +75,7 @@ class AppsEnableTest extends TestCase {
$data = [
[['admin_audit'], null, 0, 'admin_audit enabled'],
[['comments'], null, 0, 'comments enabled'],
+ [['comments', 'comments'], null, 0, "comments enabled\ncomments already enabled"],
[['invalid_app'], null, 1, 'Could not download app invalid_app'],
[['admin_audit', 'comments'], null, 0, "admin_audit enabled\ncomments enabled"],