diff options
Diffstat (limited to 't/lib/db-hash.t')
-rwxr-xr-x | t/lib/db-hash.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib/db-hash.t b/t/lib/db-hash.t index f5c9cc821a..36a3f33cb3 100755 --- a/t/lib/db-hash.t +++ b/t/lib/db-hash.t @@ -153,7 +153,7 @@ ok(23, $#keys == 29 && $#values == 29) ; $i = 0 ; while (($key,$value) = each(%h)) { - if ($key eq $keys[$i] && $value eq $values[$i] && $key gt $value) { + if ($key eq $keys[$i] && $value eq $values[$i] && $key eq lc($value)) { $key =~ y/a-z/A-Z/; $i++ if $key eq $value; } |