aboutsummaryrefslogtreecommitdiff
path: root/tests/keywords.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/keywords.pl')
-rwxr-xr-xtests/keywords.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/keywords.pl b/tests/keywords.pl
index 5fecdfa39..43f8e2b9b 100755
--- a/tests/keywords.pl
+++ b/tests/keywords.pl
@@ -120,8 +120,8 @@ sub show {
return $ret;
}
-# numerically on amount, or alphebetically if same amount
-my @mtest = reverse sort { $k{$a} <=> $k{$b} || $b cmp $a } keys %k;
+# sort alphabetically
+my @mtest = reverse sort { $b cmp $a } keys %k;
print <<TOP
<table><tr><th>Num</th><th>Keyword</th><th>Test Cases</th></tr>