From d551a0d88662ae7e78308464dbdaddd5c3400c35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Tue, 24 Oct 2023 15:36:09 +0200 Subject: [PATCH] Adapt CheckSetupControllerTest to the migration to a setup check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- apps/settings/tests/Controller/CheckSetupControllerTest.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apps/settings/tests/Controller/CheckSetupControllerTest.php b/apps/settings/tests/Controller/CheckSetupControllerTest.php index 6117658c7b0..f3759644a38 100644 --- a/apps/settings/tests/Controller/CheckSetupControllerTest.php +++ b/apps/settings/tests/Controller/CheckSetupControllerTest.php @@ -209,7 +209,6 @@ class CheckSetupControllerTest extends TestCase { 'isImagickEnabled', 'areWebauthnExtensionsEnabled', 'is64bit', - 'hasRecommendedPHPModules', 'hasBigIntConversionPendingColumns', 'isMysqlUsedWithoutUTF8MB4', 'isEnoughTempSpaceAvailableIfS3PrimaryStorageIsUsed', @@ -444,11 +443,6 @@ class CheckSetupControllerTest extends TestCase { ->method('is64bit') ->willReturn(false); - $this->checkSetupController - ->expects($this->once()) - ->method('hasRecommendedPHPModules') - ->willReturn([]); - $this->checkSetupController ->expects($this->once()) ->method('hasBigIntConversionPendingColumns')