From c5f6b0da4ae3f574b4ec9978c76216f8f447aad7 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Sat, 4 Jan 2025 14:41:03 +0000 Subject: [PATCH] fix test --- tests/test_models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: