Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Jan 8, 2023
1 parent 1c30c14 commit c41fa18
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/framework/tests/Feature/PaginatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -240,11 +240,11 @@ public function testGetPageLinks()
{
$this->assertSame(
[
1 => 'page-1.html',
2 => 'page-2.html',
3 => 'page-3.html',
4 => 'page-4.html',
5 => 'page-5.html',
1 => 'page-1.html',
2 => 'page-2.html',
3 => 'page-3.html',
4 => 'page-4.html',
5 => 'page-5.html',
],
$this->makePaginator()->getPageLinks()
);
Expand All @@ -265,9 +265,9 @@ public function testGetPageLinksWithBaseRoute()
$paginator = new Paginator($pages, (2), paginationRouteBasename: 'pages');
$this->assertSame(
[
1 => $pages[1]->getRoute(),
2 => $pages[2]->getRoute(),
3 => $pages[3]->getRoute(),
1 => $pages[1]->getRoute(),
2 => $pages[2]->getRoute(),
3 => $pages[3]->getRoute(),
],
$paginator->getPageLinks()
);
Expand Down

0 comments on commit c41fa18

Please sign in to comment.