tests: make hghave list features alphabetically
authorYuya Nishihara <yuya@tcha.org>
Sat, 04 Oct 2014 17:22:22 +0900
changeset 22762 05b3238ba901
parent 22761 d3068f7056cd
child 22763 7ebf91426f6a
tests: make hghave list features alphabetically
tests/hghave
--- a/tests/hghave	Fri Oct 03 12:54:56 2014 -0500
+++ b/tests/hghave	Sat Oct 04 17:22:22 2014 +0900
@@ -10,7 +10,7 @@
 checks = hghave.checks
 
 def list_features():
-    for name, feature in checks.iteritems():
+    for name, feature in sorted(checks.iteritems()):
         desc = feature[1]
         print name + ':', desc