summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/bootstrap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bootstrap.php b/test/bootstrap.php
index 90d38c4..324a511 100644
--- a/test/bootstrap.php
+++ b/test/bootstrap.php
@@ -31,7 +31,7 @@ class MockPDOStatement extends PDOStatement {
ob_start();
var_dump($m, $params);
$output = ob_get_clean();
- throw new Exception('Incorrect parameter count. Expected ' . $count . ' got ' . count($params) . '.\n' . $output);
+ throw new Exception('Incorrect parameter count. Expected ' . $count . ' got ' . count($params) . ".\n" . $this->statement . "\n" . $output);
}
}
}