From cd198dc2bc80f8a796d7f0705d377a1dc78507eb Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:26:03 -0800 Subject: [PATCH] Update test_check_root.py --- kyu_7/always_perfect/test_check_root.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/kyu_7/always_perfect/test_check_root.py b/kyu_7/always_perfect/test_check_root.py index 17af30585b5..5362169c978 100644 --- a/kyu_7/always_perfect/test_check_root.py +++ b/kyu_7/always_perfect/test_check_root.py @@ -51,12 +51,12 @@ def test_check_root(self,string, expected): in string format and returns the number which is a perfect square and the square root of that number. - If string contains other characters than number or + If string contains other characters than number, or it has more or less than 4 numbers separated by comma - function returns "incorrect input". + function returns 'incorrect input'. If string contains 4 numbers but not consecutive it - returns "not consecutive". + returns 'not consecutive'. :return: """ # pylint: disable-msg=R0801 @@ -64,8 +64,9 @@ def test_check_root(self,string, expected): allure.dynamic.severity(allure.severity_level.NORMAL) allure.dynamic.description_html( '