diff options
author | Kate <26026535+provokateurin@users.noreply.github.com> | 2024-07-27 20:50:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-27 20:50:28 +0200 |
commit | 212a621697cd32b65ea78fa90015cec9d9d1dfe3 (patch) | |
tree | c6eb35e00c49512d87b67e72a867477f2afb2052 | |
parent | 0525312cf79fa2893d10b9ff581d50f9403843db (diff) | |
parent | a0eca3384baeab8f94cbfbe1e4c91b138fcfff04 (diff) | |
download | nextcloud-server-212a621697cd32b65ea78fa90015cec9d9d1dfe3.tar.gz nextcloud-server-212a621697cd32b65ea78fa90015cec9d9d1dfe3.zip |
Merge pull request #46826 from nextcloud/test/theming/fix-broken-footer-links
-rw-r--r-- | apps/theming/tests/ThemingDefaultsTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/theming/tests/ThemingDefaultsTest.php b/apps/theming/tests/ThemingDefaultsTest.php index fe615d90621..0dbf4336e8a 100644 --- a/apps/theming/tests/ThemingDefaultsTest.php +++ b/apps/theming/tests/ThemingDefaultsTest.php @@ -305,7 +305,7 @@ class ThemingDefaultsTest extends TestCase { ->method('t') ->willReturnArgument(0); - $this->assertEquals('<a href="url" target="_blank" rel="noreferrer noopener" class="entity-name">Name</a> – Slogan<br/><a href="https://example.com/imprint" class="legal" target="_blank" rel="noreferrer noopener">Legal notice</a>', $this->template->getShortFooter()); + $this->assertEquals('<a href="url" target="_blank" rel="noreferrer noopener" class="entity-name">Name</a> – Slogan<br/><span class="footer__legal-links"><a href="https://example.com/imprint" class="legal" target="_blank" rel="noreferrer noopener">Legal notice</a></span>', $this->template->getShortFooter()); } public function testGetShortFooterPrivacy() { @@ -326,7 +326,7 @@ class ThemingDefaultsTest extends TestCase { ->method('t') ->willReturnArgument(0); - $this->assertEquals('<a href="url" target="_blank" rel="noreferrer noopener" class="entity-name">Name</a> – Slogan<br/><a href="https://example.com/privacy" class="legal" target="_blank" rel="noreferrer noopener">Privacy policy</a>', $this->template->getShortFooter()); + $this->assertEquals('<a href="url" target="_blank" rel="noreferrer noopener" class="entity-name">Name</a> – Slogan<br/><span class="footer__legal-links"><a href="https://example.com/privacy" class="legal" target="_blank" rel="noreferrer noopener">Privacy policy</a></span>', $this->template->getShortFooter()); } public function testGetShortFooterAllLegalLinks() { @@ -347,7 +347,7 @@ class ThemingDefaultsTest extends TestCase { ->method('t') ->willReturnArgument(0); - $this->assertEquals('<a href="url" target="_blank" rel="noreferrer noopener" class="entity-name">Name</a> – Slogan<br/><a href="https://example.com/imprint" class="legal" target="_blank" rel="noreferrer noopener">Legal notice</a> · <a href="https://example.com/privacy" class="legal" target="_blank" rel="noreferrer noopener">Privacy policy</a>', $this->template->getShortFooter()); + $this->assertEquals('<a href="url" target="_blank" rel="noreferrer noopener" class="entity-name">Name</a> – Slogan<br/><span class="footer__legal-links"><a href="https://example.com/imprint" class="legal" target="_blank" rel="noreferrer noopener">Legal notice</a> · <a href="https://example.com/privacy" class="legal" target="_blank" rel="noreferrer noopener">Privacy policy</a></span>', $this->template->getShortFooter()); } public function invalidLegalUrlProvider() { |