diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-01-15 15:06:58 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-01-16 09:29:12 +0100 |
commit | 7017b3e675db1ebd2dcc0dffeefc99790530424e (patch) | |
tree | b868b35a023b0c4943906a18cf5e7cd3c2185587 | |
parent | 0483064f078918b3800f198f9f09d4cf4fcc3a38 (diff) | |
download | nextcloud-server-7017b3e675db1ebd2dcc0dffeefc99790530424e.tar.gz nextcloud-server-7017b3e675db1ebd2dcc0dffeefc99790530424e.zip |
Fix CheckSetupControllerTest following overwrite.cli.url migration
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
-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 022094100cb..cc34197c5be 100644 --- a/apps/settings/tests/Controller/CheckSetupControllerTest.php +++ b/apps/settings/tests/Controller/CheckSetupControllerTest.php @@ -128,7 +128,6 @@ class CheckSetupControllerTest extends TestCase { ]) ->setMethods([ 'getLastCronInfo', - 'getSuggestedOverwriteCliURL', 'getCurlVersion', 'isPhpOutdated', 'isPHPMailerUsed', @@ -161,10 +160,6 @@ class CheckSetupControllerTest extends TestCase { ->method('newClient'); $this->checkSetupController ->expects($this->once()) - ->method('getSuggestedOverwriteCliURL') - ->willReturn(''); - $this->checkSetupController - ->expects($this->once()) ->method('getLastCronInfo') ->willReturn([ 'diffInSeconds' => 123, |