diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-04-27 11:00:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 11:00:16 +0200 |
commit | a64681a0fed38eb1652ddf3dd9aeeefb2a021f11 (patch) | |
tree | 9107dc4e399efb666817ee1358e8e722e4d166e9 /tests/Core | |
parent | 9b7e24a7a1c1059c7f2a0568b2d5c29f512618f8 (diff) | |
parent | 6b62bef928cbe392f19e2bbaabff5b17d133e6a9 (diff) | |
download | nextcloud-server-a64681a0fed38eb1652ddf3dd9aeeefb2a021f11.tar.gz nextcloud-server-a64681a0fed38eb1652ddf3dd9aeeefb2a021f11.zip |
Merge pull request #19514 from sndrr/already-enabled-apps
Already enabled apps
Diffstat (limited to 'tests/Core')
-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"], |