Skip to content

Commit

Permalink
Fix CI Style
Browse files Browse the repository at this point in the history
  • Loading branch information
sileence committed Dec 3, 2016
1 parent 97d641a commit 5eec2c8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/Support/SupportCollectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1655,8 +1655,7 @@ public function testPartitionWithClosure()
public function testPartitionByKey()
{
$courses = new Collection([
['free' => true, 'title' => 'Basic'],
['free' => false, 'title' => 'Premium']
['free' => true, 'title' => 'Basic'], ['free' => false, 'title' => 'Premium'],
]);

list($free, $premium) = $courses->partition('free');
Expand Down

0 comments on commit 5eec2c8

Please sign in to comment.