Skip to content

Commit

Permalink
Update test_line_positive.py
Browse files Browse the repository at this point in the history
kyu_3/line_safari_is_that_a_line/test_line_positive.py:34 in public method `test_line_positive`:
        D202: No blank lines allowed after function docstring (found 1)

        There's no blank line either before or after the docstring unless directly
        followed by an inner function or class.
  • Loading branch information
ikostan committed Dec 5, 2024
1 parent 7cf6ba0 commit a79904e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions kyu_3/line_safari_is_that_a_line/test_line_positive.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,11 @@ class LinePositiveTestCase(unittest.TestCase):
"""Testing Line Safari functionality."""

def test_line_positive(self):
"""Positive test cases."""

"""
Positive test cases.
:return:
"""
allure.dynamic.title("Testing Line Safari functionality - POSITIVE")
# pylint: disable-msg=R0801
allure.dynamic.severity(allure.severity_level.NORMAL)
Expand Down

0 comments on commit a79904e

Please sign in to comment.