Przeglądaj źródła

Fix theming tests on PHP 8.1

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
tags/v24.0.0beta1
Côme Chilliet 2 lat temu
rodzic
commit
6b770eb579
No account linked to committer's email address

+ 4
- 0
apps/theming/tests/Controller/ThemingControllerTest.php Wyświetl plik

@@ -689,6 +689,8 @@ class ThemingControllerTest extends TestCase {

public function testGetLogo() {
$file = $this->createMock(ISimpleFile::class);
$file->method('getName')->willReturn('logo.svg');
$file->method('getMTime')->willReturn(42);
$this->imageManager->expects($this->once())
->method('getImage')
->willReturn($file);
@@ -719,6 +721,8 @@ class ThemingControllerTest extends TestCase {

public function testGetLoginBackground() {
$file = $this->createMock(ISimpleFile::class);
$file->method('getName')->willReturn('background.png');
$file->method('getMTime')->willReturn(42);
$this->imageManager->expects($this->once())
->method('getImage')
->willReturn($file);

Ładowanie…
Anuluj
Zapisz