forked from mirror/buntdb
fixed govet golint typos
This commit is contained in:
parent
270260e081
commit
624feadea5
|
@ -1064,7 +1064,7 @@ func benchOpenFillData(t *testing.B, N int,
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
if n != uint64(N) {
|
if n != uint64(N) {
|
||||||
t.Fatal("expecting '%v', got '%v'", N, n)
|
t.Fatalf("expecting '%v', got '%v'", N, n)
|
||||||
}
|
}
|
||||||
t.StartTimer()
|
t.StartTimer()
|
||||||
return db, keys, vals
|
return db, keys, vals
|
||||||
|
@ -1165,12 +1165,12 @@ func benchScan(t *testing.B, asc bool, count int) {
|
||||||
count++
|
count++
|
||||||
return true
|
return true
|
||||||
})
|
})
|
||||||
} else {
|
|
||||||
return tx.Descend("", func(key, val string) bool {
|
|
||||||
count++
|
|
||||||
return true
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
return tx.Descend("", func(key, val string) bool {
|
||||||
|
count++
|
||||||
|
return true
|
||||||
|
})
|
||||||
|
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
|
|
Loading…
Reference in New Issue