Skip to content

Commit

Permalink
Fix PHPCS error.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Dec 28, 2015
1 parent b745e34 commit 4b6a797
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Collection/CollectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1563,7 +1563,7 @@ public function testChunkNested()
{
$collection = new Collection([1, 2, 3, [4, 5], 6, [7, [8, 9], 10], 11]);
$chunked = $collection->chunk(2)->toList();
$expected = [[1, 2], [3, [4, 5]], [6, [7, [8, 9,], 10]], [11]];
$expected = [[1, 2], [3, [4, 5]], [6, [7, [8, 9], 10]], [11]];
$this->assertEquals($expected, $chunked);
}
}

0 comments on commit 4b6a797

Please sign in to comment.