diff options
author | Damien George <damien@micropython.org> | 2024-09-04 17:06:25 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2024-09-06 11:08:39 +1000 |
commit | 659113825d10bf2ae71dd215a8597451e505982d (patch) | |
tree | 63b93e24621ab85d01bf7f627839077f524b4cb7 /tests/float/float_format_ints_power10.py | |
parent | 3ea1ce63da9bd17c7d395682387e58b4a7759167 (diff) |
qemu: Rename qemu-arm port to qemu.
Because this port now supports multiple architectures.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/float/float_format_ints_power10.py')
-rw-r--r-- | tests/float/float_format_ints_power10.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/float/float_format_ints_power10.py b/tests/float/float_format_ints_power10.py index 98900c135..7ea200f18 100644 --- a/tests/float/float_format_ints_power10.py +++ b/tests/float/float_format_ints_power10.py @@ -3,6 +3,6 @@ # Check that powers of 10 (that fit in float32) format correctly. for i in range(31): - # It works to 12 digits on all platforms *except* qemu-arm, where + # It works to 12 digits on all platforms *except* qemu, where # 10^11 comes out as 10000000820 or something. print(i, "{:.7g}".format(float("1e" + str(i)))) |