From 1ab9756653ac7e47e6a51212e189b76d930ec5db Mon Sep 17 00:00:00 2001 From: Anthony Romano Date: Thu, 10 Aug 2017 23:35:06 -0700 Subject: [PATCH] fix overflow breaking 32-bit test builds --- db_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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})