Skip to content

Commit

Permalink
Repair mock results generator
Browse files Browse the repository at this point in the history
  • Loading branch information
treffynnon committed Aug 30, 2013
1 parent 42d8715 commit 98a3f0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function fetch($fetch_style=PDO::FETCH_BOTH, $cursor_orientation=PDO::FET
return false;
} else {
$this->current_row++;
return array('name' => 'Fred', 'age' => 10, 'id' => '1');
return array('name' => 'Fred', 'age' => 10, 'id' => $this->current_row);
}
}
}
Expand Down

0 comments on commit 98a3f0b

Please sign in to comment.