summaryrefslogtreecommitdiff
path: root/tests/micropython/ringio_big.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/micropython/ringio_big.py')
-rw-r--r--tests/micropython/ringio_big.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/micropython/ringio_big.py b/tests/micropython/ringio_big.py
index d55c4c00b..ddbbae12a 100644
--- a/tests/micropython/ringio_big.py
+++ b/tests/micropython/ringio_big.py
@@ -1,10 +1,10 @@
# Check that micropython.RingIO works correctly.
-import micropython
-
try:
+ import micropython
+
micropython.RingIO
-except AttributeError:
+except (ImportError, AttributeError):
print("SKIP")
raise SystemExit