diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-02-28 10:46:11 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-02-28 11:02:15 -0500 |
commit | 79087b9f9e561bec1654ee80f143c4754641e81f (patch) | |
tree | 618599d916054cb89becb3f6c3f36c22b01984e3 /tests/test_summary.py | |
parent | b12f189e8ed34b31438b8cca19133b74f7d67f90 (diff) | |
download | python-coveragepy-git-79087b9f9e561bec1654ee80f143c4754641e81f.tar.gz |
fix: don't report branches to missing lines. #1065
Fixes: #1065
Fixes: #955
Diffstat (limited to 'tests/test_summary.py')
-rw-r--r-- | tests/test_summary.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_summary.py b/tests/test_summary.py index 3be1e869..8596c45c 100644 --- a/tests/test_summary.py +++ b/tests/test_summary.py @@ -280,7 +280,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% 2->4, 4->6, 6->7, 7-8', + 'mybranch.py 10 2 8 3 61% 2->4, 4->6, 7-8', '---------------------------------------------------------', 'TOTAL 11 2 8 3 63%', ] |