keywords: sort case insensitive

This commit is contained in:
Daniel Stenberg 2014-03-30 17:09:11 +02:00
parent c38b573ff5
commit 8fdb87d0df

View File

@ -121,7 +121,7 @@ sub show {
}
# sort alphabetically
my @mtest = reverse sort { $b cmp $a } keys %k;
my @mtest = reverse sort { lc($b) cmp lc($a) } keys %k;
print <<TOP
<table><tr><th>Num</th><th>Keyword</th><th>Test Cases</th></tr>