Browse Source

Fix phpcs error.

Mark Story 11 years ago
parent
commit
2a51059d3b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Collection/CollectionTest.php

+ 1 - 1
tests/TestCase/Collection/CollectionTest.php

@@ -1024,7 +1024,7 @@ class CollectionTest extends TestCase {
  * @return void
  */
 	public function testUnfoldEmptyLevels() {
-		$items = [[], [1 , 2], []];
+		$items = [[], [1, 2], []];
 		$collection = (new Collection($items))->unfold();
 		$this->assertEquals(range(1, 2), $collection->toArray(false));