From 1d533e0d77d34917228e244e381e6441420565b1 Mon Sep 17 00:00:00 2001 From: Anton Date: Fri, 26 Nov 2021 19:13:30 +0300 Subject: [PATCH] Update LinkPagerTest.php --- tests/LinkPagerTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/LinkPagerTest.php b/tests/LinkPagerTest.php index 1c87772..3c5f00e 100644 --- a/tests/LinkPagerTest.php +++ b/tests/LinkPagerTest.php @@ -70,12 +70,12 @@ class LinkPagerTest extends TestCase 'pagination' => $pagination, 'disableCurrentPageButton' => false, ]); - $this->assertContains('
  • 6
  • ', $output); + $this->assertContains('
  • 6
  • ', $output); $output = LinkPager::widget([ 'pagination' => $pagination, 'disableCurrentPageButton' => true, ]); - $this->assertContains('
  • 6
  • ', $output); + $this->assertContains('
  • 6
  • ', $output); } public function testOptionsWithTagOption() @@ -105,7 +105,7 @@ class LinkPagerTest extends TestCase $output ); $this->assertContains( - '
    2
    ', + '
    2
    ', $output ); }