diff options
Diffstat (limited to 'tests/extmod/ure_debug.py')
-rw-r--r-- | tests/extmod/ure_debug.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/extmod/ure_debug.py b/tests/extmod/ure_debug.py index 621fc8d50e..7a07ede2d4 100644 --- a/tests/extmod/ure_debug.py +++ b/tests/extmod/ure_debug.py @@ -1,9 +1,10 @@ # test printing debugging info when compiling try: import ure + ure.DEBUG except (ImportError, AttributeError): print("SKIP") raise SystemExit -ure.compile('^a|b[0-9]\w$', ure.DEBUG) +ure.compile("^a|b[0-9]\w$", ure.DEBUG) |