Fix theming tests on PHP 8.1

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2021-10-26 14:41:37 +02:00
parent 260be93a14
commit 6b770eb579
No known key found for this signature in database
GPG key ID: A3E2F658B28C760A

View file

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