diff --git a/tests/DecoratorTest.php b/tests/DecoratorTest.php index e7ba8e2..11d37c7 100644 --- a/tests/DecoratorTest.php +++ b/tests/DecoratorTest.php @@ -41,7 +41,7 @@ public function testBasicArrayAccessItems(): void $result = $builder->build($data); $this->assertSame( - expected: [0, 0, 2, 5, 0, 7, 0, 1, 0], + expected: [0, 0, 2, 5, 0, 7, 0, 1, 1], actual: array_map(fn(Tile $item): int => $item->count, $result), );