diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-02-17 15:22:00 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-02-17 15:27:43 +0100 |
commit | edee243b27f7d042998fd840d0b0f75548e3c489 (patch) | |
tree | 8df7b5c25badad8e00a12f8e0479c7f9d1650f30 /apps/user_ldap | |
parent | 2a2833e30fcc2b330ff603aae8cf8a8ed298a89b (diff) | |
download | nextcloud-server-edee243b27f7d042998fd840d0b0f75548e3c489.tar.gz nextcloud-server-edee243b27f7d042998fd840d0b0f75548e3c489.zip |
OC_App::loadApps now only accepts an array as type list
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/user_ldap')
-rw-r--r-- | apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php b/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php index 32dfb72d9c1..764c14bafe7 100644 --- a/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php +++ b/apps/user_ldap/tests/Integration/ExceptionOnLostConnection.php @@ -96,7 +96,7 @@ class ExceptionOnLostConnection { */ public function setUp() { require_once __DIR__ . '/../../../../lib/base.php'; - \OC_App::loadApps('user_ldap'); + \OC_App::loadApps(['user_ldap']); $ch = $this->getCurl(); $proxyInfoJson = curl_exec($ch); |