Commit 1ba4db56 authored by Paul Sokolovsky's avatar Paul Sokolovsky

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

parent 64c6bdb8
......@@ -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"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment