Commit 1d22d33c authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent f088c46b
......@@ -1001,7 +1001,8 @@ func TestΔBTreeAllStructs(t *testing.T) {
// keysv1 and keysv2 are random shuffle of IntSets
var keysv1 [][]int
var keysv2 [][]int
for keys := range IntSets(5) { // XXX !short -> ↑
nkeys := 5; if testing.Short() { nkeys -= 2 }
for keys := range IntSets(nkeys) {
keysv1 = append(keysv1, keys)
keysv2 = append(keysv2, keys)
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment