diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2016-07-25 10:58:03 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2016-07-25 11:05:59 +0200 |
commit | 686cb599b61ccad8cd8b0bf23d6870a56313f0eb (patch) | |
tree | d49110103aa3412df1385d5417710fe2b362b568 /apps/user_ldap/tests/Integration/Lib/User/IntegrationTestUserAvatar.php | |
parent | a20f4c432b0cee0b968b1c8c3514d1e798f574ef (diff) | |
download | nextcloud-server-686cb599b61ccad8cd8b0bf23d6870a56313f0eb.tar.gz nextcloud-server-686cb599b61ccad8cd8b0bf23d6870a56313f0eb.zip |
fix autoloading in LPAP integration tests, resolves #544
Diffstat (limited to 'apps/user_ldap/tests/Integration/Lib/User/IntegrationTestUserAvatar.php')
-rw-r--r-- | apps/user_ldap/tests/Integration/Lib/User/IntegrationTestUserAvatar.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/user_ldap/tests/Integration/Lib/User/IntegrationTestUserAvatar.php b/apps/user_ldap/tests/Integration/Lib/User/IntegrationTestUserAvatar.php index bd4da5ea97f..7c8f9475b41 100644 --- a/apps/user_ldap/tests/Integration/Lib/User/IntegrationTestUserAvatar.php +++ b/apps/user_ldap/tests/Integration/Lib/User/IntegrationTestUserAvatar.php @@ -29,7 +29,7 @@ use OCA\User_LDAP\User\User; use OCA\User_LDAP\Mapping\UserMapping; use OCA\User_LDAP\Tests\Integration\AbstractIntegrationTest; -require_once __DIR__ . '/../../../../../../lib/base.php'; +require_once __DIR__ . '/../../Bootstrap.php'; class IntegrationTestUserAvatar extends AbstractIntegrationTest { /** @var UserMapping */ @@ -148,7 +148,6 @@ class IntegrationTestUserAvatar extends AbstractIntegrationTest { } } -require_once(__DIR__ . '/../../setup-scripts/config.php'); $test = new IntegrationTestUserAvatar($host, $port, $adn, $apwd, $bdn); $test->init(); $test->run(); |