summaryrefslogtreecommitdiff
path: root/tests/extmod/utimeq1.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extmod/utimeq1.py')
-rw-r--r--tests/extmod/utimeq1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extmod/utimeq1.py b/tests/extmod/utimeq1.py
index ddbc969af..688e5b834 100644
--- a/tests/extmod/utimeq1.py
+++ b/tests/extmod/utimeq1.py
@@ -125,7 +125,7 @@ assert edge_case(MODULO_HALF - 1, -100) == diff
# We expect diff to be always positive, per the definition of heappop() which should return
# the smallest value.
-# This is the edge case where this invariant breaks, due to assymetry of two's-complement
+# This is the edge case where this invariant breaks, due to asymmetry of two's-complement
# range - there's one more negative integer than positive, so heappushing values like below
# will then make ticks_diff() return the minimum negative value. We could make heappop
# return them in a different order, but ticks_diff() result would be the same. Conclusion: