diff options
Diffstat (limited to 'tests/wipy/os.py')
-rw-r--r-- | tests/wipy/os.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/wipy/os.py b/tests/wipy/os.py index cacd10958..f81d1cee8 100644 --- a/tests/wipy/os.py +++ b/tests/wipy/os.py @@ -125,6 +125,16 @@ except: print('Exception') try: + os.unmount('/something') +except: + print('Exception') + +try: + os.unmount('something') +except: + print('Exception') + +try: os.mkfs('flash') # incorrect path format except: print('Exception') |