From 8a272dbc295b12db4cbddee4abd9d5d55a0c362e Mon Sep 17 00:00:00 2001 From: Tim Williams Date: Fri, 5 Aug 2016 09:54:59 +0100 Subject: [PATCH] Style fix; remove exta space character --- tests/Support/SupportCollectionTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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()); } }