summaryrefslogtreecommitdiff
path: root/tests/run-natmodtests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-natmodtests.py')
-rwxr-xr-xtests/run-natmodtests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-natmodtests.py b/tests/run-natmodtests.py
index 576402147..e61cf0993 100755
--- a/tests/run-natmodtests.py
+++ b/tests/run-natmodtests.py
@@ -30,7 +30,7 @@ TEST_MAPPINGS = {
# Code to allow a target MicroPython to import an .mpy from RAM
injected_import_hook_code = """\
-import sys, os, io
+import sys, io, vfs
class __File(io.IOBase):
def __init__(self):
self.off = 0
@@ -52,7 +52,7 @@ class __FS:
raise OSError(-2) # ENOENT
def open(self, path, mode):
return __File()
-os.mount(__FS(), '/__remote')
+vfs.mount(__FS(), '/__remote')
sys.path.insert(0, '/__remote')
sys.modules['{}'] = __import__('__injected')
"""