diff options
Diffstat (limited to 'coverage/results.py')
-rw-r--r-- | coverage/results.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/results.py b/coverage/results.py index d92b503c..7b032f18 100644 --- a/coverage/results.py +++ b/coverage/results.py @@ -97,8 +97,8 @@ class Analysis(object): # trouble, and here is where it's the least burden to remove them. unpredicted = [ e for e in executed - if e not in possible - and e[0] != e[1] + if e not in possible + and e[0] != e[1] and e[0] not in self.no_branch ] return sorted(unpredicted) |