From cbe3d16e4c6a3384e5ca3bb83a71e83c38bb5924 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 6 Sep 2020 21:13:22 +0200 Subject: [PATCH] fix tag color --- tests/Models/L11nTagMapperTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Models/L11nTagMapperTest.php b/tests/Models/L11nTagMapperTest.php index b9991f7..644d0ef 100644 --- a/tests/Models/L11nTagMapperTest.php +++ b/tests/Models/L11nTagMapperTest.php @@ -29,7 +29,7 @@ class L11nTagMapperTest extends \PHPUnit\Framework\TestCase public function testCR() : void { $tag = new Tag(); - $tag->setColor('ffffffff'); + $tag->setColor('#ffffffff'); $tag->setType(TagType::SINGLE); $id = TagMapper::create($tag);