Skip to content

Commit

Permalink
style updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jamierumbelow committed Mar 5, 2019
1 parent 34c2400 commit 563af72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Support/SupportCollectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -313,10 +313,10 @@ public function testCountableByWithoutPredicate()
$this->assertEquals(['foo' => 3, 'bar' => 2, 'foobar' => 1], $c->countBy()->all());

$c = new Collection([true, true, false, false, false]);
$this->assertEquals([true => 2, false => 3,], $c->countBy()->all());
$this->assertEquals([true => 2, false => 3], $c->countBy()->all());

$c = new Collection([1, 5, 1, 5, 5, 1]);
$this->assertEquals([1 => 3, 5 => 3,], $c->countBy()->all());
$this->assertEquals([1 => 3, 5 => 3], $c->countBy()->all());
}

public function testCountableByWithPredicate()
Expand Down

0 comments on commit 563af72

Please sign in to comment.