diff options
Diffstat (limited to 'tests/extmod/re_error.py')
-rw-r--r-- | tests/extmod/re_error.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extmod/re_error.py b/tests/extmod/re_error.py index f61d09132..bd678c9d2 100644 --- a/tests/extmod/re_error.py +++ b/tests/extmod/re_error.py @@ -11,7 +11,7 @@ def test_re(r): try: re.compile(r) print("OK") - except: # uPy and CPy use different errors, so just ignore the type + except: # MPy and CPy use different errors, so just ignore the type print("Error") |