Skip to content

Commit 7d1a709

Browse files
committed
s/reponse/response/ in test
1 parent 234c821 commit 7d1a709

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

xt/rt-112313.t

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use warnings;
2323
use Test::More;
2424
use Net::HTTP;
2525

26-
# Attempt to verify that RT#112313 (Hang in my_readline() when keep-alive => 1 and $reponse_size % 1024 == 0) is fixed
26+
# Attempt to verify that RT#112313 (Hang in my_readline() when keep-alive => 1 and $response_size % 1024 == 0) is fixed
2727

2828
# To do that, we need responses (headers + body) that are even multiples of 1024 bytes. So we
2929
# iterate over the same URL, trying to grow the response size incrementally...
@@ -32,7 +32,7 @@ use Net::HTTP;
3232
# the Content-Length also rolls over to one more digit, thus increasing the total response by two
3333
# bytes.
3434

35-
# So, we check that the reponse growth is only one byte after each iteration and also test multiple
35+
# So, we check that the response growth is only one byte after each iteration and also test multiple
3636
# times across the 1024, 2048 and 3072 boundaries...
3737

3838

@@ -109,7 +109,7 @@ for my $kb (1024, 2048, 3072)
109109
or diag("error: $@");
110110

111111
# Verify that response length only increased by one since the whole test rests on that assumption...
112-
is($len - $last, 1, 'reponse length increased by 1') if $last;
112+
is($len - $last, 1, 'response length increased by 1') if $last;
113113

114114
$last = $len;
115115
}

0 commit comments

Comments
 (0)