summaryrefslogtreecommitdiff
path: root/tests/test_results.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-05-01 08:16:06 -0400
committerNed Batchelder <ned@nedbatchelder.com>2022-05-01 13:00:38 -0400
commit420c01394a31415d7a7cbb80be196bcfca48482c (patch)
treed71672faede9de984c024eadc678ae05ff5af558 /tests/test_results.py
parent53f00a00b7cfb5e856136ea600844160746d6ae2 (diff)
downloadpython-coveragepy-git-420c01394a31415d7a7cbb80be196bcfca48482c.tar.gz
style: parens should indent the same as their opening line
Diffstat (limited to 'tests/test_results.py')
-rw-r--r--tests/test_results.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_results.py b/tests/test_results.py
index 4138ffd4..41f3dc40 100644
--- a/tests/test_results.py
+++ b/tests/test_results.py
@@ -139,19 +139,19 @@ def test_format_lines(statements, lines, result):
{1,2,5,10,11,13,14},
(),
"1-2, 5-11, 13-14"
- ),
+ ),
(
[1,2,3,4,5,10,11,12,13,14,98,99],
[1,2,5,10,11,13,14,99],
[(3, [4]), (5, [10, 11]), (98, [100, -1])],
"1-2, 3->4, 5-11, 13-14, 98->100, 98->exit, 99"
- ),
+ ),
(
[1,2,3,4,98,99,100,101,102,103,104],
[1,2,99,102,103,104],
[(3, [4]), (104, [-1])],
"1-2, 3->4, 99, 102-104"
- ),
+ ),
])
def test_format_lines_with_arcs(statements, lines, arcs, result):
assert format_lines(statements, lines, arcs) == result