diff --git a/kyu_7/valid_parentheses/test_valid_parentheses.py b/kyu_7/valid_parentheses/test_valid_parentheses.py index 48ddcb9d015..847189f15fa 100644 --- a/kyu_7/valid_parentheses/test_valid_parentheses.py +++ b/kyu_7/valid_parentheses/test_valid_parentheses.py @@ -127,8 +127,8 @@ def test_valid_parentheses_large_valid(self): '

Test Description:

' "

Valid large test string

") # pylint: enable=R0801 - with (allure.step(f"Enter a large valid test string and verify" - f"that the function returns True.")): + with (allure.step("Enter a large valid test string and verify" + "that the function returns True.")): test_str: str = ('()(()()()()(()())((()()())((((())(()))(()))(((' ')(())((()))((())()))(())(()()(())))())))') result: bool = valid_parentheses(test_str) @@ -151,8 +151,8 @@ def test_valid_parentheses_large_invalid(self): '

Test Description:

' "

Invalid large test string

") # pylint: enable=R0801 - with (allure.step(f"Enter a large invalid test string and verify" - f"that the function returns False.")): + with (allure.step("Enter a large invalid test string and verify" + "that the function returns False.")): test_str: str = ('(((())(()()(()()))(())())(((()(()))))()(()()((' '))))()()()(()())(()()(()()()(()()()((()())))))())()') result: bool = valid_parentheses(test_str)