diff --git a/tests/extmod/vfs_fat_ilistdir_del.py b/tests/extmod/vfs_fat_ilistdir_del.py index 4389f822bb..ccdacc57c2 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