diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-12-26 06:19:51 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-12-26 06:19:51 -0500 |
commit | ade98fc1e0d80ca05554312454173b607f893304 (patch) | |
tree | 4f08b61763c9eb4e67cd296c5c17cf4c0bc5e60c /tests/test_results.py | |
parent | 31a42af7739f55033f122b28eb4beb0bb4ffdafd (diff) | |
download | python-coveragepy-git-ade98fc1e0d80ca05554312454173b607f893304.tar.gz |
Simplify format_lines a little
Diffstat (limited to 'tests/test_results.py')
-rw-r--r-- | tests/test_results.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_results.py b/tests/test_results.py index 41494e66..86806cfd 100644 --- a/tests/test_results.py +++ b/tests/test_results.py @@ -136,7 +136,7 @@ def test_format_lines(statements, lines, result): ( [1,2,3,4,5,10,11,12,13,14,98,99], [1,2,5,10,11,13,14,99], - [(3, [4]), (98, [100, -1])], + [(3, [4]), (5, [10, 11]), (98, [100, -1])], "1-2, 3->4, 5-11, 13-14, 98->100, 98->exit, 99" ), ( |