summaryrefslogtreecommitdiff
path: root/tests/it_dbi.t
diff options
context:
space:
mode:
Diffstat (limited to 'tests/it_dbi.t')
-rwxr-xr-xtests/it_dbi.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/it_dbi.t b/tests/it_dbi.t
index b29b164..6a37637 100755
--- a/tests/it_dbi.t
+++ b/tests/it_dbi.t
@@ -333,7 +333,7 @@ $record->select(['key2' => "val2"]); is($record->key2, "val2"); is($
#
function allrecs()
{
- foreach (new it_dbi_test() as $r)
+ foreach (new it_dbi_test([0 => "ORDER BY ID"]) as $r)
$result[] = ['ID' => $r->ID, 'foo' => $r->foo];
return json_encode($result);
}