diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-13 11:04:02 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-10-13 11:04:02 +0200 |
commit | 3891cd9068596481cf1717e9b1a5bcae1cc0ce09 (patch) | |
tree | 06b3d0a75436bddbc87a2c85bbfa2c308ac181f5 /tests | |
parent | 1cb4f1080a57bfffe5d71d7496b61184434ff84d (diff) | |
parent | 4cb5970947f915c801a6748ad26898831ed3b4c1 (diff) | |
download | nextcloud-server-3891cd9068596481cf1717e9b1a5bcae1cc0ce09.tar.gz nextcloud-server-3891cd9068596481cf1717e9b1a5bcae1cc0ce09.zip |
Merge pull request #19677 from owncloud/silently-fail-app-upgrade-exceptions-master
Silently fail app upgrade exceptions
Diffstat (limited to 'tests')
-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)); } |