diff --git a/apps/theming/tests/ThemingDefaultsTest.php b/apps/theming/tests/ThemingDefaultsTest.php
index cf6b6492c11..1cc3c6449ea 100644
--- a/apps/theming/tests/ThemingDefaultsTest.php
+++ b/apps/theming/tests/ThemingDefaultsTest.php
@@ -330,7 +330,7 @@ class ThemingDefaultsTest extends TestCase {
->method('t')
->willReturnArgument(0);
- $this->assertEquals('Name – Slogan
Legal notice', $this->template->getShortFooter());
+ $this->assertEquals('Name – Slogan
', $this->template->getShortFooter());
}
public function testGetShortFooterPrivacy() {
@@ -351,7 +351,7 @@ class ThemingDefaultsTest extends TestCase {
->method('t')
->willReturnArgument(0);
- $this->assertEquals('Name – Slogan
Privacy policy', $this->template->getShortFooter());
+ $this->assertEquals('Name – Slogan
', $this->template->getShortFooter());
}
public function testGetShortFooterAllLegalLinks() {
@@ -372,7 +372,7 @@ class ThemingDefaultsTest extends TestCase {
->method('t')
->willReturnArgument(0);
- $this->assertEquals('Name – Slogan
Legal notice · Privacy policy', $this->template->getShortFooter());
+ $this->assertEquals('Name – Slogan
', $this->template->getShortFooter());
}
public function invalidLegalUrlProvider() {