diff --git a/db_test.go b/db_test.go index 46db4d2..7a44970 100644 --- a/db_test.go +++ b/db_test.go @@ -370,7 +370,7 @@ func TestDB_Open_InitialMmapSize(t *testing.T) { path := tempfile() defer os.Remove(path) - initMmapSize := 1 << 31 // 2GB + initMmapSize := 1 << 30 // 1GB testWriteSize := 1 << 27 // 134MB db, err := bolt.Open(path, 0666, &bolt.Options{InitialMmapSize: initMmapSize})