diff options
Diffstat (limited to 'tests/micropython/heapalloc_traceback.py')
| -rw-r--r-- | tests/micropython/heapalloc_traceback.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/micropython/heapalloc_traceback.py b/tests/micropython/heapalloc_traceback.py index 5ded8c5f0..1743d4956 100644 --- a/tests/micropython/heapalloc_traceback.py +++ b/tests/micropython/heapalloc_traceback.py @@ -34,7 +34,7 @@ test() buf = io.StringIO() sys.print_exception(global_exc, buf) for l in buf.getvalue().split("\n"): - # uPy on pyboard prints <stdin> as file, so remove filename. + # MicroPython on pyboard prints <stdin> as file, so remove filename. if l.startswith(" File "): l = l.split('"') print(l[0], l[2]) |
