From 53a2985f40cfbec5da24401319b8af9d782ab81d Mon Sep 17 00:00:00 2001 From: Zach D'Aquino <107204919+zdaq12@users.noreply.github.com> Date: Fri, 17 Jun 2022 12:22:02 -0500 Subject: [PATCH] adding test coverage for um and cm units --- tests/test_units.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_units.py b/tests/test_units.py index 970ef384..7da7e1f0 100644 --- a/tests/test_units.py +++ b/tests/test_units.py @@ -6,6 +6,8 @@ class TestUnits: @staticmethod def test_length(): assert ppmc.si.m == 1 + assert ppmc.si.cm == 0.01 + assert ppmc.si.um == 1e-6 @staticmethod def test_temperatur():