diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-01-04 09:18:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-04 09:18:31 +0100 |
commit | 2d22633568ce2cc6e3246a61d265852b793642c8 (patch) | |
tree | 2b354d7125cef7608de661f6f68e0d43958a8408 /tests | |
parent | a1f9ed1d7d9e953833850a14405687e115bf0b82 (diff) | |
parent | 248e824f48c50e2334875766cf90d4973dbb084a (diff) | |
download | nextcloud-server-2d22633568ce2cc6e3246a61d265852b793642c8.tar.gz nextcloud-server-2d22633568ce2cc6e3246a61d265852b793642c8.zip |
Merge pull request #13313 from nextcloud/feature/remove-outdated-caches
Remove check for outdated caches
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Settings/Controller/CheckSetupControllerTest.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/Settings/Controller/CheckSetupControllerTest.php b/tests/Settings/Controller/CheckSetupControllerTest.php index 01d2178fd7f..7efc6c56bc4 100644 --- a/tests/Settings/Controller/CheckSetupControllerTest.php +++ b/tests/Settings/Controller/CheckSetupControllerTest.php @@ -148,7 +148,6 @@ class CheckSetupControllerTest extends TestCase { 'hasWorkingFileLocking', 'getLastCronInfo', 'getSuggestedOverwriteCliURL', - 'getOutdatedCaches', 'getCurlVersion', 'isPhpOutdated', 'isOpcacheProperlySetup', @@ -435,9 +434,6 @@ class CheckSetupControllerTest extends TestCase { ->method('hasMissingIndexes') ->willReturn([]); $this->checkSetupController - ->method('getOutdatedCaches') - ->willReturn([]); - $this->checkSetupController ->method('isSqliteUsed') ->willReturn(false); $this->checkSetupController @@ -504,7 +500,6 @@ class CheckSetupControllerTest extends TestCase { 'isGetenvServerWorking' => true, 'isReadOnlyConfig' => false, 'hasValidTransactionIsolationLevel' => true, - 'outdatedCaches' => [], 'hasFileinfoInstalled' => true, 'hasWorkingFileLocking' => true, 'suggestedOverwriteCliURL' => '', |