From 93c3c7b8aefd02829fec0efda36b819b24f68fb2 Mon Sep 17 00:00:00 2001 From: BarTracz Date: Fri, 28 Jun 2024 11:45:12 +0200 Subject: [PATCH] test fix --- tests/DecoratorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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), );