Skip to content

Commit fca8ea6

Browse files
committed
tests/extmod/vfs_rom.py: Import errno for test.
It's needed by the test. This previously passed because the compiler (actually parser) optimises away errno constants. Signed-off-by: Damien George <[email protected]>
1 parent 966eb00 commit fca8ea6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/extmod/vfs_rom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Test VfsRom filesystem.
22

33
try:
4-
import sys, struct, os, uctypes, vfs
4+
import errno, sys, struct, os, uctypes, vfs
55

66
vfs.VfsRom
77
except (ImportError, AttributeError):

0 commit comments

Comments
 (0)