aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test.py')
-rw-r--r--test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test.py b/test.py
index 6e5379c..0341bf3 100644
--- a/test.py
+++ b/test.py
@@ -38,7 +38,8 @@ def _format_algorithm(codename):
def _format_available_algorithms():
descr = 'available algorithms (in the CODENAME: DISPLAY_NAME format):\n'
- return descr + '\n'.join(map(_format_algorithm, registry.get_codenames()))
+ return descr + '\n'.join(map(
+ _format_algorithm, sorted(registry.get_codenames())))
def _format_description():
return _format_available_algorithms()