summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/extmod/vfs_posix.py5
-rw-r--r--tests/extmod/vfs_posix.py.exp1
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/extmod/vfs_posix.py b/tests/extmod/vfs_posix.py
index f8c4aae40..2a14fc207 100644
--- a/tests/extmod/vfs_posix.py
+++ b/tests/extmod/vfs_posix.py
@@ -59,9 +59,10 @@ print(uos.listdir(temp_dir))
vfs = uos.VfsPosix(temp_dir)
print(list(i[0] for i in vfs.ilistdir(".")))
-# stat, statvfs
+# stat, statvfs (statvfs may not exist)
print(type(vfs.stat(".")))
-print(type(vfs.statvfs(".")))
+if hasattr(vfs, "statvfs"):
+ assert type(vfs.statvfs(".")) is tuple
# check types of ilistdir with str/bytes arguments
print(type(list(vfs.ilistdir("."))[0][0]))
diff --git a/tests/extmod/vfs_posix.py.exp b/tests/extmod/vfs_posix.py.exp
index e7d68f38e..eb9ab4310 100644
--- a/tests/extmod/vfs_posix.py.exp
+++ b/tests/extmod/vfs_posix.py.exp
@@ -7,7 +7,6 @@ hello
['test2']
['test2']
<class 'tuple'>
-<class 'tuple'>
<class 'str'>
<class 'bytes'>
[]