mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 20:20:14 +01:00
tests/btree1: Fix out of memory error running on esp8266.
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user