From 1208f6581d8856a5f1322f67c81a5cb4db91cc09 Mon Sep 17 00:00:00 2001 From: Roman Atachiants Date: Sat, 21 Aug 2021 15:52:51 +0400 Subject: [PATCH] test full page --- txn_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/txn_test.go b/txn_test.go index f87dc69..4329b84 100644 --- a/txn_test.go +++ b/txn_test.go @@ -430,7 +430,7 @@ func TestUninitializedSet(t *testing.T) { } assert.NoError(t, c.Query(func(txn *Txn) error { - for i := 0; i < 2000; i++ { + for i := 0; i < 20000; i++ { txn.Insert(map[string]interface{}{ "col1": fmt.Sprint(i % 3), })