From 49e0032788ed08d826e23280768744e8fd5baae4 Mon Sep 17 00:00:00 2001 From: Zingzy <90309290+Zingzy@users.noreply.github.com> Date: Thu, 28 Nov 2024 08:26:53 +0530 Subject: [PATCH] Add blank line for improved readability in test_utils.py --- tests/test_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_utils.py b/tests/test_utils.py index 48e946b..3ac5022 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -121,6 +121,7 @@ def test_is_positive_integer_with_positive_integer_string(): def test_is_positive_integer_with_zero_string(): assert is_positive_integer("0") + def test_is_positive_integer_with_negative_integer_string(): assert not is_positive_integer("-5")