summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorSimon L <szaimen@e.mail.de>2023-04-18 11:33:53 +0200
committerSimon L <szaimen@e.mail.de>2023-04-18 11:33:53 +0200
commite2ab9bf4af3d9c801c4586b843cbc5419d6840fd (patch)
treed26ee2952a29d226c57c7a7eb836d385bc072648 /apps
parent80645a591a5ed0892179e042001f32de79c4ebba (diff)
downloadnextcloud-server-e2ab9bf4af3d9c801c4586b843cbc5419d6840fd.tar.gz
nextcloud-server-e2ab9bf4af3d9c801c4586b843cbc5419d6840fd.zip
address review and fix tests
Signed-off-by: Simon L <szaimen@e.mail.de>
Diffstat (limited to 'apps')
-rw-r--r--apps/settings/tests/Controller/CheckSetupControllerTest.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/settings/tests/Controller/CheckSetupControllerTest.php b/apps/settings/tests/Controller/CheckSetupControllerTest.php
index 2678d5ce9ee..2b074d24c39 100644
--- a/apps/settings/tests/Controller/CheckSetupControllerTest.php
+++ b/apps/settings/tests/Controller/CheckSetupControllerTest.php
@@ -186,6 +186,7 @@ class CheckSetupControllerTest extends TestCase {
'hasValidTransactionIsolationLevel',
'hasFileinfoInstalled',
'hasWorkingFileLocking',
+ 'hasDBFileLocking',
'getLastCronInfo',
'getSuggestedOverwriteCliURL',
'getCurlVersion',
@@ -504,7 +505,7 @@ class CheckSetupControllerTest extends TestCase {
->willReturn(true);
$this->checkSetupController
->expects($this->once())
- ->method('hasDBileLocking')
+ ->method('hasDBFileLocking')
->willReturn(true);
$this->checkSetupController
->expects($this->once())
@@ -608,6 +609,7 @@ class CheckSetupControllerTest extends TestCase {
'hasValidTransactionIsolationLevel' => true,
'hasFileinfoInstalled' => true,
'hasWorkingFileLocking' => true,
+ 'hasDBFileLocking' => true,
'suggestedOverwriteCliURL' => '',
'cronInfo' => [
'diffInSeconds' => 123,