fix overflow breaking 32-bit test builds

pull/26/head
Anthony Romano 2017-08-10 23:35:06 -07:00
parent 12923fe56c
commit 1ab9756653
1 changed files with 1 additions and 1 deletions

View File

@ -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})