diff --git a/tests/ConnectionTest.php b/tests/ConnectionTest.php index 8961e57..51712bc 100644 --- a/tests/ConnectionTest.php +++ b/tests/ConnectionTest.php @@ -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);