diff --git a/concurrent_test.go b/concurrent_test.go index 10f1a2f..07c0c1f 100644 --- a/concurrent_test.go +++ b/concurrent_test.go @@ -165,7 +165,9 @@ func concurrentReadAndWrite(t *testing.T, testDuration time.Duration) { t.Log("Preparing db.") - db := mustCreateDB(t, nil) + db := mustCreateDB(t, &bolt.Options{ + PageSize: 4096, + }) defer db.Close() err := db.Update(func(tx *bolt.Tx) error { for i := 0; i < conf.bucketCount; i++ {