diff options
Diffstat (limited to 'coverage/results.py')
-rw-r--r-- | coverage/results.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/results.py b/coverage/results.py index f15fae74..3f6ba123 100644 --- a/coverage/results.py +++ b/coverage/results.py @@ -60,7 +60,7 @@ class Analysis(object): def arc_possibilities(self): """Returns a sorted list of the arcs in the code.""" - return self.file_reporter.arcs() + return sorted(self.file_reporter.arcs()) def arcs_executed(self): """Returns a sorted list of the arcs actually executed in the code.""" |