From 5eec2c885a179fa001319d3159804ce4bba96e51 Mon Sep 17 00:00:00 2001 From: Duilio Palacios Date: Sat, 3 Dec 2016 22:12:25 +0000 Subject: [PATCH] Fix CI Style --- tests/Support/SupportCollectionTest.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/Support/SupportCollectionTest.php b/tests/Support/SupportCollectionTest.php index e0ff5c616ffa..c10b1dd8c296 100755 --- a/tests/Support/SupportCollectionTest.php +++ b/tests/Support/SupportCollectionTest.php @@ -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');