summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtest/it_dbi.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/it_dbi.t b/test/it_dbi.t
index 165861f..dbcc6bb 100755
--- a/test/it_dbi.t
+++ b/test/it_dbi.t
@@ -349,7 +349,7 @@ $r->update(['key4' => "val4'", 'key5' => "val5'"]); is($r->_writes, 1); is($r-
$r->update(['key4' => "val4'", 'key5' => "val5'"]); is($r->_writes, 1); is($r->key4, "val4'"); is($r->key5, "val5'");
# Check LIMIT
-$count = $r->select('ID >' => 0, 'ORDER BY ID DESC', 'LIMIT' => 1);
+$count = $r->select(['ID >' => 0, 'ORDER BY ID DESC', 'LIMIT' => 1]);
is($count, 1);
is($r->ID, 6);