diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-26 16:07:11 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-11-07 12:25:03 +0100 |
commit | ac3da13b38d2bb4ec658b5f89e35d56271db3f22 (patch) | |
tree | c1f0525baa6447f1a491d33e5c538203ed413aa8 /apps/settings/tests | |
parent | 086d3ceecc211f255dd24e6ffaed553a6ca2046d (diff) | |
download | nextcloud-server-ac3da13b38d2bb4ec658b5f89e35d56271db3f22.tar.gz nextcloud-server-ac3da13b38d2bb4ec658b5f89e35d56271db3f22.zip |
Migrate Freetype check to SetupCheck API
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/settings/tests')
-rw-r--r-- | apps/settings/tests/Controller/CheckSetupControllerTest.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/settings/tests/Controller/CheckSetupControllerTest.php b/apps/settings/tests/Controller/CheckSetupControllerTest.php index 86305aecdc6..6e65d4a5a5c 100644 --- a/apps/settings/tests/Controller/CheckSetupControllerTest.php +++ b/apps/settings/tests/Controller/CheckSetupControllerTest.php @@ -189,7 +189,6 @@ class CheckSetupControllerTest extends TestCase { 'getCurlVersion', 'isPhpOutdated', 'getOpcacheSetupRecommendations', - 'hasFreeTypeSupport', 'hasMissingIndexes', 'hasMissingPrimaryKeys', 'isSqliteUsed', @@ -329,9 +328,6 @@ class CheckSetupControllerTest extends TestCase { ->method('getOpcacheSetupRecommendations') ->willReturn(['recommendation1', 'recommendation2']); $this->checkSetupController - ->method('hasFreeTypeSupport') - ->willReturn(false); - $this->checkSetupController ->method('hasMissingIndexes') ->willReturn([]); $this->checkSetupController @@ -444,7 +440,6 @@ class CheckSetupControllerTest extends TestCase { 'isCorrectMemcachedPHPModuleInstalled' => true, 'OpcacheSetupRecommendations' => ['recommendation1', 'recommendation2'], 'isSettimelimitAvailable' => true, - 'hasFreeTypeSupport' => false, 'isSqliteUsed' => false, 'databaseConversionDocumentation' => 'http://docs.example.org/server/go.php?to=admin-db-conversion', 'missingIndexes' => [], |