Skip to content

Commit

Permalink
doing styleCI's job :P
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan-DPC committed Sep 22, 2017
1 parent 746b41a commit 9638e36
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
Expand Up @@ -1804,13 +1804,13 @@ public function testZip()

public function testPadPadsArrayWithValue()
{
$c = new Collection([1,2,3]);
$c = new Collection([1, 2, 3]);
$c = $c->pad(4, 0);
$this->assertEquals([1,2,3,0], $c->all());
$this->assertEquals([1, 2, 3, 0], $c->all());

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

public function testGettingMaxItemsFromCollection()
Expand Down

2 comments on commit 9638e36

@GrahamCampbell
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You didn't need to do this - it would have fixed it after merge. :)

@Dylan-DPC-zz
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes I'm aware. I just like to do it 👍

Please sign in to comment.