From e3a2997f4583e6fca4d3cac908f77eb31b333a49 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 20 Nov 2021 17:10:10 +0100 Subject: [PATCH] todo implementations --- tests/Models/TagTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Models/TagTest.php b/tests/Models/TagTest.php index 225a91a..43e88db 100755 --- a/tests/Models/TagTest.php +++ b/tests/Models/TagTest.php @@ -41,7 +41,7 @@ final class TagTest extends \PHPUnit\Framework\TestCase public function testDefault() : void { self::assertEquals(0, $this->tag->getId()); - self::assertInstanceOf(NullAccount::class, $this->tag->owner); + self::assertEquals(null, $this->tag->owner); self::assertEquals(TagType::SINGLE, $this->tag->getType()); self::assertEquals('00000000', $this->tag->color); self::assertEquals('', $this->tag->getL11n());