summaryrefslogtreecommitdiff
path: root/tests/micropython/heap_lock.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/micropython/heap_lock.py')
-rw-r--r--tests/micropython/heap_lock.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/micropython/heap_lock.py b/tests/micropython/heap_lock.py
index ca3f5806a..855893537 100644
--- a/tests/micropython/heap_lock.py
+++ b/tests/micropython/heap_lock.py
@@ -11,13 +11,13 @@ micropython.heap_lock()
try:
print([])
except MemoryError:
- print('MemoryError')
+ print("MemoryError")
# expansion of a heap block
try:
l.extend(l2)
except MemoryError:
- print('MemoryError')
+ print("MemoryError")
micropython.heap_unlock()