diff --git a/tests/Support/SupportCollectionTest.php b/tests/Support/SupportCollectionTest.php index 455dd9d04a21..15b0e34c19d7 100755 --- a/tests/Support/SupportCollectionTest.php +++ b/tests/Support/SupportCollectionTest.php @@ -732,7 +732,7 @@ public function testCollapse() $this->assertEquals([$object1, $object2], $data->collapse()->all()); } - public function testCollapseWithNestedCollactions() + public function testCollapseWithNestedCollections() { $data = new Collection([new Collection([1, 2, 3]), new Collection([4, 5, 6])]); $this->assertEquals([1, 2, 3, 4, 5, 6], $data->collapse()->all());