tests/btree1: Fix out of memory error running on esp8266.

This commit is contained in:
Paul Sokolovsky 2016-10-29 19:53:31 +03:00
parent 64c6bdb8ee
commit 1ba4db5685
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ except ImportError:
#f = open("_test.db", "w+b")
f = uio.BytesIO()
db = btree.open(f)
db = btree.open(f, pagesize=512)
db[b"foo3"] = b"bar3"
db[b"foo1"] = b"bar1"