aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/tests
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-11-14 16:07:37 +0100
committerCôme Chilliet <91878298+come-nc@users.noreply.github.com>2023-11-27 15:23:52 +0100
commit1b547c7db88f872db999793f56554cb9e3a4366b (patch)
treeb362d7b59489764d19e79a35561fd434588e50b7 /apps/settings/tests
parentad88c04f2de08e2adda5dc2031699d892466fd94 (diff)
downloadnextcloud-server-1b547c7db88f872db999793f56554cb9e3a4366b.tar.gz
nextcloud-server-1b547c7db88f872db999793f56554cb9e3a4366b.zip
Migrate missing primary key 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.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/settings/tests/Controller/CheckSetupControllerTest.php b/apps/settings/tests/Controller/CheckSetupControllerTest.php
index a493722a3ce..fe299b6e799 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',
- 'hasMissingPrimaryKeys',
'isSqliteUsed',
'isPHPMailerUsed',
'getAppDirsWithDifferentOwner',
@@ -229,9 +228,6 @@ class CheckSetupControllerTest extends TestCase {
->method('getOpcacheSetupRecommendations')
->willReturn(['recommendation1', 'recommendation2']);
$this->checkSetupController
- ->method('hasMissingPrimaryKeys')
- ->willReturn([]);
- $this->checkSetupController
->method('isSqliteUsed')
->willReturn(false);
$this->checkSetupController