Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul M. Jones committed Feb 3, 2015
1 parent 11aa4b2 commit f3137dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/src/AbstractExtendedPdoTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,6 @@ public function testBindValues()
'Aura\Sql\Exception\CannotBindValue',
"Cannot bind value of type 'object' to placeholder 'id'"
);
$sth = $this->pdo->prepareWithValues($stm, array(('id' => new StdClass));
$sth = $this->pdo->prepareWithValues($stm, array('id' => new StdClass));
}
}

0 comments on commit f3137dd

Please sign in to comment.