Skip to content

Commit ee26a53

Browse files
authored
Apply fixes from StyleCI (#248)
1 parent c72618e commit ee26a53

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

tests/Unit/PaginationTest.php

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,16 @@ public function it_can_set_pagination_params()
1919
'sorting' => 'desc',
2020
]);
2121

22-
$this->assertEquals([
23-
'page' => 3,
24-
'perPage' => 30,
25-
'sorting' => 'desc',
26-
'columns' => [
27-
0 => '*',
22+
$this->assertEquals(
23+
[
24+
'page' => 3,
25+
'perPage' => 30,
26+
'sorting' => 'desc',
27+
'columns' => [
28+
0 => '*',
29+
],
30+
'pageName' => 'test',
2831
],
29-
'pageName' => 'test',
30-
],
3132
$chat->getPaginationParams()
3233
);
3334
}

0 commit comments

Comments
 (0)