diff --git a/test/PaginatorTest.php b/test/PaginatorTest.php index a1bae952..89a568c5 100644 --- a/test/PaginatorTest.php +++ b/test/PaginatorTest.php @@ -500,7 +500,7 @@ public function testGetsItemsByPageHandleDbSelectAdapter() ->will($this->returnValue($mockStatement)); $mockSelect = $this->createMock('Laminas\Db\Sql\Select'); - $dbSelect = new DbSelect($mockSelect, $mockSql); + $dbSelect = new DbSelect($mockSelect, $mockSql, null, $mockSelect); $this->assertInstanceOf('ArrayIterator', $resultSet->getDataSource()); $paginator = new Paginator\Paginator($dbSelect);