From b51fe9a7b25ca11739fd871cc4d79548730e2810 Mon Sep 17 00:00:00 2001 From: "Paul M. Jones" Date: Wed, 8 Aug 2018 07:58:45 -0500 Subject: [PATCH] update test --- tests/ConnectionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);