Skip to content

Commit

Permalink
style: trim whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Dec 2, 2023
1 parent 65c3b12 commit fe23ff4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -1589,7 +1589,7 @@ def my_func_2(super_long_input_argument_0=0, super_long_input_argument_1=1, supe
pass
""",
[1,5], "5", excludes=['my_func_2'])

self.check_coverage("""\
def my_func (
super_long_input_argument_0=0,
Expand All @@ -1601,7 +1601,7 @@ def my_func_2 (super_long_input_argument_0=0, super_long_input_argument_1=1,
pass
""",
[1,5], "5", excludes=['my_func_2'])

self.check_coverage("""\
def my_func (
super_long_input_argument_0=0,
Expand All @@ -1613,7 +1613,7 @@ def my_func_2 (super_long_input_argument_0=0, super_long_input_argument_1=1,
pass
""",
[], "5", excludes=['my_func'])

self.check_coverage("""\
def my_func \
(
Expand All @@ -1626,7 +1626,7 @@ def my_func_2(super_long_input_argument_0=0, super_long_input_argument_1=1, supe
pass
""",
[1,5], "5", excludes=['my_func_2'])

self.check_coverage("""\
def my_func \
(
Expand Down

0 comments on commit fe23ff4

Please sign in to comment.