decrease iteration count of btree test (#20491)

disable btree test
This commit is contained in:
Bung
2022-10-04 18:32:07 +08:00
committed by GitHub
parent 7aaeb75ebd
commit 6cf0727192

View File

@@ -68,7 +68,7 @@ proc main =
when true:
var b2 = initBTree[int, string]()
var t2 = initTable[int, string]()
const iters = 100_000
const iters = 100
for i in 1..iters:
let x = rand(high(int))
if not t2.hasKey(x):