summaryrefslogtreecommitdiffstatshomepage
path: root/tests/extmod/vfs_lfs_error.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extmod/vfs_lfs_error.py')
-rw-r--r--tests/extmod/vfs_lfs_error.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/extmod/vfs_lfs_error.py b/tests/extmod/vfs_lfs_error.py
index b97fe6ec15..793fae59e2 100644
--- a/tests/extmod/vfs_lfs_error.py
+++ b/tests/extmod/vfs_lfs_error.py
@@ -106,8 +106,9 @@ def test(bdev, vfs_class):
# error during seek
with vfs.open('testfile', 'r') as f:
+ f.seek(1 << 30) # SEEK_SET
try:
- f.seek(1 << 31)
+ f.seek(1 << 30, 1) # SEEK_CUR
except OSError:
print('seek OSError')