summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2022-05-23 11:52:45 +1000
committerDamien George <damien@micropython.org>2022-05-24 12:52:00 +1000
commit5fa8ea1b8b1c3e130ffdb6136ab0e7675fc41b46 (patch)
treec3871efc054b50ea0ab8e56194ee241d70aa1790 /tests
parent926983522605523ca74981143b78a3826d53b3e8 (diff)
tests/extmod: Change expected errno code from 36 to 30 in VfsLfs2 test.
Errno 30 is EROFS, which is now the correct value reported by littlefs 2. Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/extmod/vfs_lfs_mount.py.exp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extmod/vfs_lfs_mount.py.exp b/tests/extmod/vfs_lfs_mount.py.exp
index 68561b480..defaad058 100644
--- a/tests/extmod/vfs_lfs_mount.py.exp
+++ b/tests/extmod/vfs_lfs_mount.py.exp
@@ -13,4 +13,4 @@ package
hello from lfs
lfsmod2.py: print("hello from lfs")
-OSError(36,)
+OSError(30,)