summaryrefslogtreecommitdiff
path: root/tests/test_results.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-12-26 06:19:51 -0500
committerNed Batchelder <ned@nedbatchelder.com>2018-12-26 06:19:51 -0500
commitade98fc1e0d80ca05554312454173b607f893304 (patch)
tree4f08b61763c9eb4e67cd296c5c17cf4c0bc5e60c /tests/test_results.py
parent31a42af7739f55033f122b28eb4beb0bb4ffdafd (diff)
downloadpython-coveragepy-git-ade98fc1e0d80ca05554312454173b607f893304.tar.gz
Simplify format_lines a little
Diffstat (limited to 'tests/test_results.py')
-rw-r--r--tests/test_results.py2
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"
),
(