Skip to content

Commit

Permalink
Style fix; remove exta space character
Browse files Browse the repository at this point in the history
timsweb committed Aug 5, 2016

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 8c5beab commit 8a272db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Support/SupportCollectionTest.php
Original file line number Diff line number Diff line change
@@ -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());
}
}

0 comments on commit 8a272db

Please sign in to comment.