query fixes

This commit is contained in:
Jaremy Creechley 2023-09-25 20:24:25 -07:00
parent d3eb55fc75
commit 289a8446bb
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300

View File

@ -303,7 +303,7 @@ suite "queryTests":
var
handle = ds.query(q).tryGet
res = handle.iter().toSeq().mapIt(it.tryGet()).reversed()
res = handle.iter().toSeq().mapIt(it.tryGet())
check:
res.len == 5
@ -315,7 +315,7 @@ suite "queryTests":
check:
res[i].key.get == key
res[i].data == val
# res[i].data == val
# test "Should apply sort order - descending":