Skip to content

Commit

Permalink
Remove a missed print_r in parambind test.
Browse files Browse the repository at this point in the history
  • Loading branch information
gabordemooij committed May 1, 2016
1 parent ccbdf3a commit 72368f1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions testing/RedUNIT/Mysql/Parambind.php
Expand Up @@ -51,7 +51,6 @@ public function testPDOParameterBinding()
}
try {
R::exec( "select * from job limit ? ", array( 1 ) );

fail();
} catch (\Exception $e ) {
pass();
Expand All @@ -67,7 +66,6 @@ public function testPDOParameterBinding()
R::getAll( "select * from job limit ? ", array( 1 ) );
pass();
} catch (\Exception $e ) {
print_r( $e );
fail();
}
try {
Expand Down

0 comments on commit 72368f1

Please sign in to comment.