Skip to content
Snippets Groups Projects
Commit 8fdb87d0 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

keywords: sort case insensitive

parent c38b573f
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment