Fix theming tests on PHP 8.1

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
pull/29862/head
Côme Chilliet 5 years ago
parent 260be93a14
commit 6b770eb579
No known key found for this signature in database
GPG Key ID: A3E2F658B28C760A
  1. 4
      apps/theming/tests/Controller/ThemingControllerTest.php

@ -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);

Loading…
Cancel
Save