diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-07-24 00:30:32 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-07-24 00:30:32 +0300 |
commit | 5a38694f559745da8b03734a1736817016537d5e (patch) | |
tree | 57826f090d6edeacd5689c081a06a6f2246b52d0 /tests | |
parent | 25df419c6703396e7e817bf6c8bb443f6c941e5d (diff) | |
download | micropython-5a38694f559745da8b03734a1736817016537d5e.tar.gz micropython-5a38694f559745da8b03734a1736817016537d5e.zip |
tests/extmod/btree1: Close database at the end of test.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/extmod/btree1.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/extmod/btree1.py b/tests/extmod/btree1.py index 11acd7c98f..a15e537e9e 100644 --- a/tests/extmod/btree1.py +++ b/tests/extmod/btree1.py @@ -57,3 +57,5 @@ print(list(db.values())) for k in db: print(k) + +db.close() |