From a0eca3384baeab8f94cbfbe1e4c91b138fcfff04 Mon Sep 17 00:00:00 2001 From: provokateurin Date: Sat, 27 Jul 2024 20:13:38 +0200 Subject: [PATCH] test(theming): Fix broken footer links tests Signed-off-by: provokateurin --- apps/theming/tests/ThemingDefaultsTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/theming/tests/ThemingDefaultsTest.php b/apps/theming/tests/ThemingDefaultsTest.php index fe615d906211f..0dbf4336e8ae3 100644 --- a/apps/theming/tests/ThemingDefaultsTest.php +++ b/apps/theming/tests/ThemingDefaultsTest.php @@ -305,7 +305,7 @@ public function testGetShortFooterImprint() { ->method('t') ->willReturnArgument(0); - $this->assertEquals('Name – Slogan
Legal notice', $this->template->getShortFooter()); + $this->assertEquals('Name – Slogan
Legal notice', $this->template->getShortFooter()); } public function testGetShortFooterPrivacy() { @@ -326,7 +326,7 @@ public function testGetShortFooterPrivacy() { ->method('t') ->willReturnArgument(0); - $this->assertEquals('Name – Slogan
Privacy policy', $this->template->getShortFooter()); + $this->assertEquals('Name – Slogan
Privacy policy', $this->template->getShortFooter()); } public function testGetShortFooterAllLegalLinks() { @@ -347,7 +347,7 @@ public function testGetShortFooterAllLegalLinks() { ->method('t') ->willReturnArgument(0); - $this->assertEquals('Name – Slogan
Legal notice · Privacy policy', $this->template->getShortFooter()); + $this->assertEquals('Name – Slogan
Legal notice · Privacy policy', $this->template->getShortFooter()); } public function invalidLegalUrlProvider() {