Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge pull request zendframework/zendframework#836 from Maks3w/hotfix…
Browse files Browse the repository at this point in the history
…/ZF2-176

[ZF2-176] Replace all assertType assertions.
  • Loading branch information
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Adapter/DbTableSelect/OracleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ public function testSelectDoesReturnZendDbTableRowset()
$adapter = new \Zend\Paginator\Adapter\DbTableSelect($query);
$items = $adapter->getItems(0, 10);

$this->assertType('Zend\Db\Table\Rowset', $items);
$this->assertInstanceOf('Zend\Db\Table\Rowset', $items);
}
}

0 comments on commit a66c89a

Please sign in to comment.