diff --git a/tests/Support/SupportCollectionTest.php b/tests/Support/SupportCollectionTest.php index de78f46ede3..6077046d0d4 100755 --- a/tests/Support/SupportCollectionTest.php +++ b/tests/Support/SupportCollectionTest.php @@ -1393,14 +1393,14 @@ public function testSliceNegativeOffsetAndNegativeLength() public function testCollectonFromTraversable() { - $collection = new Collection(new \ArrayObject([1 , 2, 3])); - $this->assertEquals([1 , 2, 3], $collection->toArray()); + $collection = new Collection(new \ArrayObject([1, 2, 3])); + $this->assertEquals([1, 2, 3], $collection->toArray()); } public function testCollectonFromTraversableWithKeys() { - $collection = new Collection(new \ArrayObject(['foo' => 1 , 'bar' => 2, 'baz' => 3])); - $this->assertEquals(['foo' => 1 , 'bar' => 2, 'baz' => 3], $collection->toArray()); + $collection = new Collection(new \ArrayObject(['foo' => 1, 'bar' => 2, 'baz' => 3])); + $this->assertEquals(['foo' => 1, 'bar' => 2, 'baz' => 3], $collection->toArray()); } }