summaryrefslogtreecommitdiff
path: root/tests/test_summary.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-12-25 07:51:02 -0500
committerNed Batchelder <ned@nedbatchelder.com>2018-12-25 07:51:02 -0500
commit31a42af7739f55033f122b28eb4beb0bb4ffdafd (patch)
treea91c47c24f30f053e4e68e266ff83db19d1b52f2 /tests/test_summary.py
parentdcb07762bfc91dec3782096ab6dae995e7c6631a (diff)
downloadpython-coveragepy-git-31a42af7739f55033f122b28eb4beb0bb4ffdafd.tar.gz
Sort the text missing results by line number, not kind
Diffstat (limited to 'tests/test_summary.py')
-rw-r--r--tests/test_summary.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_summary.py b/tests/test_summary.py
index 60a96e64..8dd56e64 100644
--- a/tests/test_summary.py
+++ b/tests/test_summary.py
@@ -263,7 +263,7 @@ class SummaryTest(UsingModulesMixin, CoverageTest):
'Name Stmts Miss Branch BrPart Cover Missing',
'---------------------------------------------------------',
'main.py 1 0 0 0 100%',
- 'mybranch.py 10 2 8 3 61% 7-8, 2->4, 4->6, 6->7',
+ 'mybranch.py 10 2 8 3 61% 2->4, 4->6, 6->7, 7-8',
'---------------------------------------------------------',
'TOTAL 11 2 8 3 63%',
]