diff --git a/tests/Support/SupportCollectionTest.php b/tests/Support/SupportCollectionTest.php index a3433a576383..7da51474af85 100755 --- a/tests/Support/SupportCollectionTest.php +++ b/tests/Support/SupportCollectionTest.php @@ -1663,10 +1663,6 @@ public function testHigherOrderCollectionMapFromArrays() $collection = collect([$person1, $person2]); $this->assertEquals(['Taylor', 'Yaz'], $collection->map->name->toArray()); - - $collection = collect([new TestSupportCollectionHigherOrderItem, new TestSupportCollectionHigherOrderItem]); - - $this->assertEquals(['TAYLOR', 'TAYLOR'], $collection->each->uppercase()->map->name->toArray()); } }