From: Michael Date: Sun, 30 Jan 2022 16:26:29 +0000 (+0000) Subject: Spaces X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=273f4c352e9c521444cda44cf95b10b72cabab11;p=friendica.git Spaces --- diff --git a/tests/src/Model/TagTest.php b/tests/src/Model/TagTest.php index aed2db319a..c85b173acd 100644 --- a/tests/src/Model/TagTest.php +++ b/tests/src/Model/TagTest.php @@ -33,15 +33,15 @@ class TagTest extends TestCase { $body = '![url=https://pirati.ca/profile/test1]Testgruppe 1b[/url] Test, please ignore'; $tags = Tag::getFromBody($body); - $expected = [ - [ - '![url=https://pirati.ca/profile/test1]Testgruppe 1b[/url]', - '!', - 'https://pirati.ca/profile/test1', - 'Testgruppe 1b' - ] - ]; + $expected = [ + [ + '![url=https://pirati.ca/profile/test1]Testgruppe 1b[/url]', + '!', + 'https://pirati.ca/profile/test1', + 'Testgruppe 1b' + ] + ]; - self::assertEquals($expected, $tags); + self::assertEquals($expected, $tags); } }