diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-09 14:08:22 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-09 14:08:22 +0200 |
commit | 4cb5970947f915c801a6748ad26898831ed3b4c1 (patch) | |
tree | 1296c65af512b67cb3be071c577a183695b9d3f6 /tests/lib | |
parent | bd21e5925cf5e2f388b0f2b0f92d15e887c18423 (diff) | |
download | nextcloud-server-4cb5970947f915c801a6748ad26898831ed3b4c1.tar.gz nextcloud-server-4cb5970947f915c801a6748ad26898831ed3b4c1.zip |
Always pass in ILogger
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/updater.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/updater.php b/tests/lib/updater.php index 763858acf5d..1651fe1759d 100644 --- a/tests/lib/updater.php +++ b/tests/lib/updater.php @@ -161,7 +161,7 @@ class UpdaterTest extends \Test\TestCase { * @param bool $result */ public function testIsUpgradePossible($oldVersion, $newVersion, $allowedVersion, $result) { - $updater = new Updater($this->httpHelper, $this->config); + $updater = new Updater($this->httpHelper, $this->config, $this->logger); $this->assertSame($result, $updater->isUpgradePossible($oldVersion, $newVersion, $allowedVersion)); } |