summaryrefslogtreecommitdiff
path: root/tests/basics/tuple1.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics/tuple1.py')
-rw-r--r--tests/basics/tuple1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/tuple1.py b/tests/basics/tuple1.py
index 72bb3f01b..70ae07189 100644
--- a/tests/basics/tuple1.py
+++ b/tests/basics/tuple1.py
@@ -17,7 +17,7 @@ print(x + (10, 100, 10000))
x += (10, 11, 12)
print(x)
-# construction of tuple from large iterator (tests implementation detail of uPy)
+# construction of tuple from large iterator (tests implementation detail of MicroPython)
print(tuple(range(20)))
# unsupported unary operation