summaryrefslogtreecommitdiff
path: root/tests/float/string_format2.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/float/string_format2.py')
-rw-r--r--tests/float/string_format2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/float/string_format2.py b/tests/float/string_format2.py
index 7a36f4d2f..cdea4c119 100644
--- a/tests/float/string_format2.py
+++ b/tests/float/string_format2.py
@@ -144,7 +144,7 @@ if full_tests:
for alignment in ("", "<", ">", "=", "^"):
for fill in ("", " ", "0", "@"):
for sign in ("", "+", "-", " "):
- # An empty precision defaults to 6, but when uPy is
+ # An empty precision defaults to 6, but when MicroPython is
# configured to use a float, we can only use a
# precision of 6 with numbers less than 10 and still
# get results that compare to CPython (which uses
@@ -164,7 +164,7 @@ if full_tests:
for alignment in ("", "<", ">", "=", "^"):
for fill in ("", " ", "0", "@"):
for sign in ("", "+", "-", " "):
- # An empty precision defaults to 6, but when uPy is
+ # An empty precision defaults to 6, but when MicroPython is
# configured to use a float, we can only use a
# precision of 6 with numbers less than 10 and still
# get results that compare to CPython (which uses