summaryrefslogtreecommitdiff
path: root/tests/extmod/vfs_userfs.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extmod/vfs_userfs.py')
-rw-r--r--tests/extmod/vfs_userfs.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/extmod/vfs_userfs.py b/tests/extmod/vfs_userfs.py
index 3cdfe82ee..570b83353 100644
--- a/tests/extmod/vfs_userfs.py
+++ b/tests/extmod/vfs_userfs.py
@@ -1,7 +1,7 @@
# test VFS functionality with a user-defined filesystem
# also tests parts of uio.IOBase implementation
-import sys
+import usys
try:
import uio
@@ -76,9 +76,9 @@ f = open("/userfs/data.txt")
print(f.read())
# import files from the user filesystem
-sys.path.append("/userfs")
+usys.path.append("/userfs")
import usermod1
# unmount and undo path addition
uos.umount("/userfs")
-sys.path.pop()
+usys.path.pop()