Skip to content

Commit

Permalink
LastN not LasN
Browse files Browse the repository at this point in the history
  • Loading branch information
ravage84 committed Sep 6, 2018
1 parent db62509 commit 536326c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/TestCase/Collection/CollectionTest.php
Expand Up @@ -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();
Expand All @@ -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();
Expand All @@ -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();
Expand All @@ -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);
Expand Down

0 comments on commit 536326c

Please sign in to comment.