diff --git a/Cake/Test/TestCase/View/Helper/PaginatorHelperTest.php b/Cake/Test/TestCase/View/Helper/PaginatorHelperTest.php index f7b7a568cb2..fd94aaa714f 100644 --- a/Cake/Test/TestCase/View/Helper/PaginatorHelperTest.php +++ b/Cake/Test/TestCase/View/Helper/PaginatorHelperTest.php @@ -923,7 +923,7 @@ public function testNextAndPrevNonDefaultModel() { $result = $this->Paginator->next('Next', [ 'model' => 'Server' ]); - $expected =''; + $expected = ''; $this->assertEquals($expected, $result); $result = $this->Paginator->prev('Prev', [ @@ -1236,7 +1236,7 @@ public function testNumbersModulus() { array('li' => array()), array('a' => array('href' => '/index?page=2')), '2', '/a', '/li', array('li' => array('class' => 'ellipsis')), '...', '/li', array('li' => array()), array('a' => array('href' => '/index?page=4894')), '4894', '/a', '/li', - array('li' => array('class' => 'active')), ' array('class' => 'active')), ' array()), array('a' => array('href' => '/index?page=4896')), '4896', '/a', '/li', array('li' => array()), array('a' => array('href' => '/index?page=4897')), '4897', '/a', '/li', ); @@ -1488,7 +1488,6 @@ public function testFirstNonDefaultModel() { 'pageCount' => 5, ); - $result = $this->Paginator->first('first', ['model' => 'Article:']); $this->assertEquals('', $result);