Skip to content

Commit

Permalink
Apply fixes from StyleCI (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
musonza authored Apr 8, 2020
1 parent c72618e commit ee26a53
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions tests/Unit/PaginationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,16 @@ public function it_can_set_pagination_params()
'sorting' => 'desc',
]);

$this->assertEquals([
'page' => 3,
'perPage' => 30,
'sorting' => 'desc',
'columns' => [
0 => '*',
$this->assertEquals(
[
'page' => 3,
'perPage' => 30,
'sorting' => 'desc',
'columns' => [
0 => '*',
],
'pageName' => 'test',
],
'pageName' => 'test',
],
$chat->getPaginationParams()
);
}
Expand Down

0 comments on commit ee26a53

Please sign in to comment.