diff --git a/tests/TestCase/Collection/CollectionTest.php b/tests/TestCase/Collection/CollectionTest.php index a3d3cb70d7d..e1b3279e00c 100644 --- a/tests/TestCase/Collection/CollectionTest.php +++ b/tests/TestCase/Collection/CollectionTest.php @@ -2192,7 +2192,7 @@ public function testLastN($data) * @return void * @covers ::takeLast */ - public function testLasNtWithOverflow($data) + public function testLastNtWithOverflow($data) { $collection = new Collection($data); $result = $collection->takeLast(10)->toArray(); @@ -2207,7 +2207,7 @@ public function testLasNtWithOverflow($data) * @return void * @covers ::takeLast */ - public function testLasNtWithOddData($data) + public function testLastNtWithOddData($data) { $collection = new Collection($data); $result = $collection->take(3)->takeLast(2)->toArray(); @@ -2221,7 +2221,7 @@ public function testLasNtWithOddData($data) * @return void * @covers ::takeLast */ - public function testLasNtWithCountable() + public function testLastNtWithCountable() { $collection = new Collection(new CountableIterator(range(0, 5))); $result = $collection->takeLast(2)->toList(); @@ -2239,7 +2239,7 @@ public function testLasNtWithCountable() * @return void * @covers ::takeLast */ - public function testLasNtWithNegative($data) + public function testLastNtWithNegative($data) { $collection = new Collection($data); $this->expectException(\InvalidArgumentException::class);