minor: rounding test
Build on RHEL9 docker image / build (push) Failing after 4m31s
Build on RHEL8 docker image / build (push) Failing after 4m53s
Run Simulator Tests on local RHEL9 / build (push) Successful in 17m56s
Run Simulator Tests on local RHEL8 / build (push) Successful in 21m36s

This commit is contained in:
2026-04-27 17:03:49 +02:00
parent f6b67a8c0a
commit 280e3254d1
+1 -1
View File
@@ -16,7 +16,7 @@ def test_Hz():
def test_rounding_exact():
f = MHz(1.234)
assert f.value == round(1.234 * 1_000_000)
assert f.value == round(1_234_000)
def test_mul():