Skip to content

Commit 1ba4db5

Browse files
committed
tests/btree1: Fix out of memory error running on esp8266.
1 parent 64c6bdb commit 1ba4db5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/extmod/btree1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#f = open("_test.db", "w+b")
1111
f = uio.BytesIO()
12-
db = btree.open(f)
12+
db = btree.open(f, pagesize=512)
1313

1414
db[b"foo3"] = b"bar3"
1515
db[b"foo1"] = b"bar1"

0 commit comments

Comments
 (0)