changeset 97:506586cc2f3b

Tests: limit_req fixed in 0.8.5, remove TODO.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 13 Jul 2009 17:49:59 +0400
parents ecff5407867c
children b8b901f86518
files limit-req.t
diffstat 1 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/limit-req.t	Mon Jun 08 23:27:30 2009 +0400
+++ b/limit-req.t	Mon Jul 13 17:49:59 2009 +0400
@@ -66,9 +66,6 @@
 http_get('/test1.html');
 like(http_get('/test1.html'), qr/^HTTP\/1.. 503 /m, 'request rejected');
 
-TODO: {
-local $TODO = "patch under review";
-
 # Second request will be delayed by limit_req, make sure it isn't truncated.
 # The bug only manifests itself if buffer will be filled, so sleep for a while
 # before reading response.
@@ -77,6 +74,4 @@
 my $l2 = length(http_get('/long.html', sleep => 1.1));
 is($l2, $l1, 'delayed big request not truncated');
 
-}
-
 ###############################################################################