Skip to content

Commit ec8dea8

Browse files
committed
regex in test no longer requires i modifier
1 parent 1a77163 commit ec8dea8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/live-https.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ SKIP: for my $pass ( 1 .. 2 ) {
5959
print "# $code $mess\n";
6060
for ( sort keys %h ) {
6161
print "# $_: $h{$_}\n";
62-
if (/^connection$/i && $h{$_} =~ /^keep-alive$/) {
62+
if (/^connection$/ && $h{$_} =~ /^keep-alive$/) {
6363
$connection_is_kept_alive = 1;
6464
}
6565
}

0 commit comments

Comments
 (0)