summaryrefslogtreecommitdiff
path: root/tests/basics/gc1.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics/gc1.py')
-rw-r--r--tests/basics/gc1.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/basics/gc1.py b/tests/basics/gc1.py
index 332bf9744..dff9538b1 100644
--- a/tests/basics/gc1.py
+++ b/tests/basics/gc1.py
@@ -15,13 +15,13 @@ print(gc.isenabled())
gc.collect()
if hasattr(gc, 'mem_free'):
- # uPy has these extra functions
+ # MicroPython has these extra functions
# just test they execute and return an int
assert type(gc.mem_free()) is int
assert type(gc.mem_alloc()) is int
if hasattr(gc, 'threshold'):
- # uPy has this extra function
+ # MicroPython has this extra function
# check execution and returns
assert(gc.threshold(1) is None)
assert(gc.threshold() == 0)