From 47f4965f0a683a73651bda7cb9cba768d28131c4 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 9 Aug 2015 06:35:19 -0400 Subject: .arcs() doesn't have to sort its results. --- coverage/results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/results.py') diff --git a/coverage/results.py b/coverage/results.py index f15fae7..3f6ba12 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.""" -- cgit v1.2.1