Skip to content

Commit 3644384

Browse files
committed
revert to using os.mount, etc. instead of vfs.mount
1 parent 4832683 commit 3644384

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/run-natmodtests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828

2929
# Code to allow a target MicroPython to import an .mpy from RAM
3030
injected_import_hook_code = """\
31-
import sys, io, vfs
31+
# CIRCUITPY-CHANGE: no vfs, but still have os
32+
import sys, io, os
3233
class __File(io.IOBase):
3334
def __init__(self):
3435
self.off = 0

0 commit comments

Comments
 (0)