summaryrefslogtreecommitdiff
path: root/tests/micropython/heapalloc_fail_tuple.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/micropython/heapalloc_fail_tuple.py')
-rw-r--r--tests/micropython/heapalloc_fail_tuple.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/micropython/heapalloc_fail_tuple.py b/tests/micropython/heapalloc_fail_tuple.py
index 1cd23fb74..de79385e3 100644
--- a/tests/micropython/heapalloc_fail_tuple.py
+++ b/tests/micropython/heapalloc_fail_tuple.py
@@ -8,5 +8,5 @@ micropython.heap_lock()
try:
(x,)
except MemoryError:
- print('MemoryError: tuple create')
+ print("MemoryError: tuple create")
micropython.heap_unlock()