diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-11-14 15:51:26 +0100 |
---|---|---|
committer | backportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com> | 2023-12-04 16:23:23 +0000 |
commit | e48e67b0a43bca34c373387ac42184ba1f44fda0 (patch) | |
tree | 10c6cc788cc37bc15dc9864b8e238134bfbcb2b3 /apps/settings/tests | |
parent | d0a72a103d220fe15d34237e427f1ae0fec450c5 (diff) | |
download | nextcloud-server-e48e67b0a43bca34c373387ac42184ba1f44fda0.tar.gz nextcloud-server-e48e67b0a43bca34c373387ac42184ba1f44fda0.zip |
Migrate missing index database check to new 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 | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/settings/tests/Controller/CheckSetupControllerTest.php b/apps/settings/tests/Controller/CheckSetupControllerTest.php index e5db2d52e3c..a493722a3ce 100644 --- a/apps/settings/tests/Controller/CheckSetupControllerTest.php +++ b/apps/settings/tests/Controller/CheckSetupControllerTest.php @@ -178,7 +178,6 @@ class CheckSetupControllerTest extends TestCase { 'getCurlVersion', 'isPhpOutdated', 'getOpcacheSetupRecommendations', - 'hasMissingIndexes', 'hasMissingPrimaryKeys', 'isSqliteUsed', 'isPHPMailerUsed', @@ -230,9 +229,6 @@ class CheckSetupControllerTest extends TestCase { ->method('getOpcacheSetupRecommendations') ->willReturn(['recommendation1', 'recommendation2']); $this->checkSetupController - ->method('hasMissingIndexes') - ->willReturn([]); - $this->checkSetupController ->method('hasMissingPrimaryKeys') ->willReturn([]); $this->checkSetupController |