Commit a79d97cb authored by Damien George's avatar Damien George

tests/extmod/vfs_fat_fileio2.py: Close test file at end of test.

Otherwise it can lead to inconsistent results running subsequent tests.
Signed-off-by: default avatarDamien George <damien@micropython.org>
parent 2b888aa2
......@@ -112,3 +112,4 @@ try:
f.write(bytearray(bsize * free))
except OSError as e:
print("ENOSPC:", e.args[0] == 28) # uerrno.ENOSPC
f.close()
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