diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-04-26 20:08:44 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2017-04-26 20:08:44 +0200 |
commit | d0e0bc55c80bf850c7941af99edead7ec5d56e59 (patch) | |
tree | 78fcf8c2288bc06863d8640202ea5d9ec7f01b4d /tests/Settings | |
parent | d17a901f8ae449a3ffb52c74cc9e027c8e3bf039 (diff) | |
download | nextcloud-server-d0e0bc55c80bf850c7941af99edead7ec5d56e59.tar.gz nextcloud-server-d0e0bc55c80bf850c7941af99edead7ec5d56e59.zip |
Fix tests
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'tests/Settings')
-rw-r--r-- | tests/Settings/Controller/AppSettingsControllerTest.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/Settings/Controller/AppSettingsControllerTest.php b/tests/Settings/Controller/AppSettingsControllerTest.php index 3b76594f933..9633c771596 100644 --- a/tests/Settings/Controller/AppSettingsControllerTest.php +++ b/tests/Settings/Controller/AppSettingsControllerTest.php @@ -107,16 +107,16 @@ class AppSettingsControllerTest extends TestCase { 'displayName' => 'Enabled apps', ], [ - 'id' => 3, - 'ident' => 'app-bundles', - 'displayName' => 'App bundles', - ], - [ 'id' => 1, 'ident' => 'disabled', 'displayName' => 'Disabled apps', ], [ + 'id' => 3, + 'ident' => 'app-bundles', + 'displayName' => 'App bundles', + ], + [ 'id' => 'auth', 'ident' => 'auth', 'displayName' => 'Authentication & authorization', |