]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Model/TagTest.php
spelling: cached
[friendica.git] / tests / src / Model / TagTest.php
index aed2db319a04e291d109488538f32ab597d7e976..62003734b1d2464e420ac5cb9e1dbc8eac58a8b9 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -32,16 +32,18 @@ class TagTest extends TestCase
        public function testGetFromBody()
        {
                $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'
-            ]
-        ];
 
-        self::assertEquals($expected, $tags);
+               $expected = [
+                       [
+                               '![url=https://pirati.ca/profile/test1]Testgruppe 1b[/url]',
+                               '!',
+                               'https://pirati.ca/profile/test1',
+                               'Testgruppe 1b'
+                       ]
+               ];
+
+               self::assertEquals($expected, $tags);
        }
 }