summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-08-30 19:10:50 +0200
committerLukas Reschke <lukas@statuscode.ch>2016-09-26 11:55:42 +0200
commit2fff203c598e8f71ee0aea4265efe7f952864d06 (patch)
treeca1ce80245d4391f33a9e4fd84335e08ee077580 /apps
parentff67cbc6af144c92d4b1e69d6c606c1fdbf177d4 (diff)
downloadnextcloud-server-2fff203c598e8f71ee0aea4265efe7f952864d06.tar.gz
nextcloud-server-2fff203c598e8f71ee0aea4265efe7f952864d06.zip
Add missing constructor argument
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/tests/unit/CalDAV/AbstractCalDavBackendTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/tests/unit/CalDAV/AbstractCalDavBackendTest.php b/apps/dav/tests/unit/CalDAV/AbstractCalDavBackendTest.php
index ca5000f3f44..589c00c377a 100644
--- a/apps/dav/tests/unit/CalDAV/AbstractCalDavBackendTest.php
+++ b/apps/dav/tests/unit/CalDAV/AbstractCalDavBackendTest.php
@@ -79,8 +79,8 @@ abstract class AbstractCalDavBackendTest extends TestCase {
->willReturn([self::UNIT_TEST_GROUP]);
$db = \OC::$server->getDatabaseConnection();
- $this->config = \OC::$server->getConfig();
- $this->backend = new CalDavBackend($db, $this->principal, $this->userManager, $config);
+ $this->config = \OC::$server->getConfig();
+ $this->backend = new CalDavBackend($db, $this->principal, $this->userManager, $this->config);
$this->tearDown();
}