]> git.mxchange.org Git - friendica.git/commitdiff
Spaces
authorMichael <heluecht@pirati.ca>
Sun, 30 Jan 2022 16:26:29 +0000 (16:26 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 30 Jan 2022 16:26:29 +0000 (16:26 +0000)
tests/src/Model/TagTest.php

index aed2db319a04e291d109488538f32ab597d7e976..c85b173acdd8a09985c073a48ecbd2ecc53d0d4b 100644 (file)
@@ -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);
        }
 }