X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2Fsrc%2FModel%2FFileTagTest.php;h=47eb15e3cea686d392174911e4bf2e123118751c;hb=2292263780000a50e1e7583bc170cca619d86f42;hp=f74bec3639f0b1bf7ce4f7dd2135b0ba943801ba;hpb=dc0978141c444f452071f076c2309fcf67546b57;p=friendica.git diff --git a/tests/src/Model/FileTagTest.php b/tests/src/Model/FileTagTest.php index f74bec3639..47eb15e3ce 100644 --- a/tests/src/Model/FileTagTest.php +++ b/tests/src/Model/FileTagTest.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Test\src\Model; @@ -54,7 +73,7 @@ class FileTagTest extends TestCase */ public function testArrayToFile(array $array, string $type, string $file) { - $this->assertEquals($file, FileTag::arrayToFile($array, $type)); + self::assertEquals($file, FileTag::arrayToFile($array, $type)); } public function dataFileToArray() @@ -114,6 +133,6 @@ class FileTagTest extends TestCase */ public function testFileToArray(string $file, string $type, array $array) { - $this->assertEquals($array, FileTag::fileToArray($file, $type)); + self::assertEquals($array, FileTag::fileToArray($file, $type)); } }