diff --git a/tests/test_models.py b/tests/test_models.py index 168fd2e..cd62cde 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -52,10 +52,10 @@ ) def test_microseconds(unit, result): # act - result = Unit(unit) + unit_result = Unit(unit) # assert - assert result == result + assert unit_result == result class TestSnaptime: