summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/extmod/vfs_fat_ilistdir_del.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/extmod/vfs_fat_ilistdir_del.py b/tests/extmod/vfs_fat_ilistdir_del.py
index 4389f822b..ccdacc57c 100644
--- a/tests/extmod/vfs_fat_ilistdir_del.py
+++ b/tests/extmod/vfs_fat_ilistdir_del.py
@@ -11,7 +11,7 @@ except (ImportError, AttributeError):
class RAMBlockDevice:
- ERASE_BLOCK_SIZE = 4096
+ ERASE_BLOCK_SIZE = 512
def __init__(self, blocks):
self.data = bytearray(blocks * self.ERASE_BLOCK_SIZE)
@@ -72,7 +72,7 @@ def test(bdev, vfs_class):
try:
- bdev = RAMBlockDevice(30)
+ bdev = RAMBlockDevice(50)
except MemoryError:
print("SKIP")
raise SystemExit