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 930d986 commit 7f15896
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 @@ -360,7 +360,7 @@ public function testStatementLogging()
$this->connection->logQueries(true);
$stm = "SELECT id, name FROM pdotest WHERE id = :id";
$sth = $this->connection->prepare($stm);
$this->assertInstanceOf(PDOStatement::CLASS, $sth);
$this->assertInstanceOf(LoggedStatement::CLASS, $sth);

$this->assertTrue($sth->execute(['id' => '0']));

Expand Down

0 comments on commit 7f15896

Please sign in to comment.