From d31212d0d147f2e727241005a62ca434c8e8a417 Mon Sep 17 00:00:00 2001 From: Steve Manuel Date: Wed, 2 Nov 2016 00:14:32 -0700 Subject: adding test fix for asc order --- system/db/content.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/db/content.go b/system/db/content.go index 30010e8..860f830 100644 --- a/system/db/content.go +++ b/system/db/content.go @@ -246,7 +246,7 @@ func Query(namespace string, opts QueryOptions) [][]byte { continue } - if cur <= start { + if cur < start { break } -- cgit v1.2.3