summaryrefslogtreecommitdiff
path: root/tests/extmod/vfs_lfs.py
diff options
context:
space:
mode:
authorDaniël van de Giessen <daniel@dvdgiessen.nl>2024-03-27 20:16:13 +0100
committerDamien George <damien@micropython.org>2025-05-07 17:01:16 +1000
commit9287a1e6eaa9c6dc1bb9be27466acd3e639d8113 (patch)
tree97c7613a503fbe0e8d735d6b28fb59c3a6fa8c44 /tests/extmod/vfs_lfs.py
parent80d03b77804da44d56b7b9446520ffafde7e3eea (diff)
lib/littlefs: Update LittleFS to v2.10.2.
Going above the root directory (/../foo) now gives an error. This is an intentional change made by LittleFS. It required a update of the testsuite and is a (minor) compatibility break. Signed-off-by: Daniël van de Giessen <daniel@dvdgiessen.nl>
Diffstat (limited to 'tests/extmod/vfs_lfs.py')
-rw-r--r--tests/extmod/vfs_lfs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extmod/vfs_lfs.py b/tests/extmod/vfs_lfs.py
index 3ad57fd9c..40d58e9c9 100644
--- a/tests/extmod/vfs_lfs.py
+++ b/tests/extmod/vfs_lfs.py
@@ -136,7 +136,7 @@ def test(bdev, vfs_class):
print(fs.getcwd())
fs.chdir("../testdir")
print(fs.getcwd())
- fs.chdir("../..")
+ fs.chdir("..")
print(fs.getcwd())
fs.chdir(".//testdir")
print(fs.getcwd())