From ee26a53da3c3eef3a2d55e0f9cdedb2bbba35a7b Mon Sep 17 00:00:00 2001 From: Tinashe Musonza Date: Wed, 8 Apr 2020 08:13:06 -0400 Subject: [PATCH] Apply fixes from StyleCI (#248) --- tests/Unit/PaginationTest.php | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/tests/Unit/PaginationTest.php b/tests/Unit/PaginationTest.php index 9a06dff..40e2180 100644 --- a/tests/Unit/PaginationTest.php +++ b/tests/Unit/PaginationTest.php @@ -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() ); }