summaryrefslogtreecommitdiff
path: root/tests/extmod/vfs_fat_more.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extmod/vfs_fat_more.py')
-rw-r--r--tests/extmod/vfs_fat_more.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/extmod/vfs_fat_more.py b/tests/extmod/vfs_fat_more.py
index d8449829d..076802f6a 100644
--- a/tests/extmod/vfs_fat_more.py
+++ b/tests/extmod/vfs_fat_more.py
@@ -111,10 +111,10 @@ print(uos.listdir())
print(uos.listdir("sys"))
# test importing a file from a mounted FS
-import sys
+import usys
-sys.path.clear()
-sys.path.append("/sys")
+usys.path.clear()
+usys.path.append("/sys")
with open("sys/test_module.py", "w") as f:
f.write('print("test_module!")')
import test_module