diff options
author | Damien George <damien.p.george@gmail.com> | 2018-06-06 13:24:09 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-06-06 14:28:23 +1000 |
commit | 5ef0d2ab14e7a1a367695e1bb64300f57871d9a3 (patch) | |
tree | 6899cb9b0d61fae35903526b5f2bf14cbdfacac9 /tests/extmod/vfs_basic.py | |
parent | 6c02da2eec02fc51c74dc6bfb9aeb34428c7a85e (diff) |
tests/extmod: Remove conditional import of uos_vfs, it no longer exists.
This conditional import was only used to get the tests working on the unix
coverage build, which has now switched to use VFS by default so the uos
module alone has the required functionality.
Diffstat (limited to 'tests/extmod/vfs_basic.py')
-rw-r--r-- | tests/extmod/vfs_basic.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/extmod/vfs_basic.py b/tests/extmod/vfs_basic.py index 4fc67d34b..fbcc92bad 100644 --- a/tests/extmod/vfs_basic.py +++ b/tests/extmod/vfs_basic.py @@ -1,11 +1,7 @@ # test VFS functionality without any particular filesystem type try: - try: - import uos_vfs as uos - open = uos.vfs_open - except ImportError: - import uos + import uos uos.mount except (ImportError, AttributeError): print("SKIP") |