Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul M. Jones committed Aug 8, 2018
1 parent 7f15896 commit b51fe9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ConnectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ public function testQueryLogging()
// query logging turned on
$this->connection->logQueries(true);
$sth = $this->connection->perform($stm, ['id' => [false, PDO::PARAM_BOOL]]);
$this->assertInstanceOf(PDOStatement::CLASS, $sth);
$this->assertInstanceOf(LoggedStatement::CLASS, $sth);

$queries = $this->connection->getQueries();
$this->assertCount(1, $queries);
Expand Down

0 comments on commit b51fe9a

Please sign in to comment.