diff options
Diffstat (limited to 'coverage/results.py')
-rw-r--r-- | coverage/results.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coverage/results.py b/coverage/results.py index ba335209..c88da919 100644 --- a/coverage/results.py +++ b/coverage/results.py @@ -23,7 +23,8 @@ class Analysis(object): # Identify missing statements. executed = self.data.lines(self.filename) or [] executed = self.file_reporter.translate_lines(executed) - self.missing = self.statements - executed + self.executed = executed + self.missing = self.statements - self.executed if self.data.has_arcs(): self._arc_possibilities = sorted(self.file_reporter.arcs()) |