diff options
author | Sander Ruitenbeek <s.ruitenbeek@getgoing.nl> | 2020-02-17 08:42:22 +0000 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-24 16:30:45 +0200 |
commit | 3d9cd00c7b0c5899db24e29dc088b9d885338939 (patch) | |
tree | 34dfa33de74c0e504be6bf269e4ad1cd4607c6e9 /tests | |
parent | defcbd9169b670dc4731e98aaec4ea57c6d0d44a (diff) | |
download | nextcloud-server-3d9cd00c7b0c5899db24e29dc088b9d885338939.tar.gz nextcloud-server-3d9cd00c7b0c5899db24e29dc088b9d885338939.zip |
Updated test to check for already enabled apps
Signed-off-by: Sander Ruitenbeek <s.ruitenbeek@getgoing.nl>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Core/Command/Apps/AppsEnableTest.php | 1 |
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"], |