diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-10-31 18:13:48 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-11-09 11:10:04 +0100 |
commit | ef3cd329167ce236b7f7a09293be439623e585c5 (patch) | |
tree | 1b5060debaf6794b21dd96411dc840605d268838 /apps/user_ldap/tests/Integration | |
parent | c6f1af98962b1eeefeaa3d8ec328b5b0a17dcd32 (diff) | |
download | nextcloud-server-ef3cd329167ce236b7f7a09293be439623e585c5.tar.gz nextcloud-server-ef3cd329167ce236b7f7a09293be439623e585c5.zip |
don't skip updating when ajax is set as background job mode
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/user_ldap/tests/Integration')
-rw-r--r-- | apps/user_ldap/tests/Integration/AbstractIntegrationTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/tests/Integration/AbstractIntegrationTest.php b/apps/user_ldap/tests/Integration/AbstractIntegrationTest.php index 3bc3699fbac..64bd2df3885 100644 --- a/apps/user_ldap/tests/Integration/AbstractIntegrationTest.php +++ b/apps/user_ldap/tests/Integration/AbstractIntegrationTest.php @@ -140,7 +140,7 @@ abstract class AbstractIntegrationTest { * initializes the Access test instance */ protected function initAccess() { - $this->access = new Access($this->connection, $this->ldap, $this->userManager, $this->helper); + $this->access = new Access($this->connection, $this->ldap, $this->userManager, $this->helper, \OC::$server); } /** |