From 98a3f0b713cad892ed59abd977aa40d4938f5656 Mon Sep 17 00:00:00 2001 From: Simon Holywell Date: Fri, 30 Aug 2013 11:03:50 +0100 Subject: Repair mock results generator --- test/bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/bootstrap.php b/test/bootstrap.php index 41d9026..c64d5a6 100644 --- a/test/bootstrap.php +++ b/test/bootstrap.php @@ -21,7 +21,7 @@ class MockPDOStatement extends PDOStatement { return false; } else { $this->current_row++; - return array('name' => 'Fred', 'age' => 10, 'id' => '1'); + return array('name' => 'Fred', 'age' => 10, 'id' => $this->current_row); } } } -- cgit v1.2.3