Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-01-19 16:00:27 +0300
committerMorris Jobke <hey@morrisjobke.de>2018-01-19 16:00:27 +0300
commitc70927eaa0d558575ee63b149005ae9ed17e88df (patch)
tree077f02eba8ad1f50e332c29a47efd4b09fc6f5ba /tests/lib/UpdaterTest.php
parentfdd7a5325006d5ff023f04fab32627e08393f053 (diff)
Remove not needed 3rdparty app disabling during upgrade for PHP 5.x
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'tests/lib/UpdaterTest.php')
-rw-r--r--tests/lib/UpdaterTest.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/lib/UpdaterTest.php b/tests/lib/UpdaterTest.php
index a6a8224ac34..afc9f9b1f86 100644
--- a/tests/lib/UpdaterTest.php
+++ b/tests/lib/UpdaterTest.php
@@ -115,11 +115,4 @@ class UpdaterTest extends TestCase {
$this->assertSame($result, $this->updater->isUpgradePossible($oldVersion, $newVersion, $allowedVersions));
}
- public function testSetSkip3rdPartyAppsDisable() {
- $this->updater->setSkip3rdPartyAppsDisable(true);
- $this->assertSame(true, $this->invokePrivate($this->updater, 'skip3rdPartyAppsDisable'));
- $this->updater->setSkip3rdPartyAppsDisable(false);
- $this->assertSame(false, $this->invokePrivate($this->updater, 'skip3rdPartyAppsDisable'));
- }
-
}