You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by pg...@apache.org on 2006/08/25 08:59:14 UTC

svn commit: r436685 - in /perl/Apache-SizeLimit/trunk/t: apache/check_n_requests.t apache2/check_n_requests.t

Author: pgollucci
Date: Thu Aug 24 23:59:13 2006
New Revision: 436685

URL: http://svn.apache.org/viewvc?rev=436685&view=rev
Log:
remove the extra leading space from regex

Modified:
    perl/Apache-SizeLimit/trunk/t/apache/check_n_requests.t
    perl/Apache-SizeLimit/trunk/t/apache2/check_n_requests.t

Modified: perl/Apache-SizeLimit/trunk/t/apache/check_n_requests.t
URL: http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/t/apache/check_n_requests.t?rev=436685&r1=436684&r2=436685&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/t/apache/check_n_requests.t (original)
+++ perl/Apache-SizeLimit/trunk/t/apache/check_n_requests.t Thu Aug 24 23:59:13 2006
@@ -12,5 +12,5 @@
 
 Apache::TestUtil::t_start_error_log_watch();
 my $res = GET $url;
-my $c = grep { / Apache::SizeLimit httpd process too big/ } Apache::TestUtil::t_finish_error_log_watch();
+my $c = grep { /Apache::SizeLimit httpd process too big/ } Apache::TestUtil::t_finish_error_log_watch();
 ok $c == 1;

Modified: perl/Apache-SizeLimit/trunk/t/apache2/check_n_requests.t
URL: http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/t/apache2/check_n_requests.t?rev=436685&r1=436684&r2=436685&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/t/apache2/check_n_requests.t (original)
+++ perl/Apache-SizeLimit/trunk/t/apache2/check_n_requests.t Thu Aug 24 23:59:13 2006
@@ -12,5 +12,5 @@
 
 Apache::TestUtil::t_start_error_log_watch();
 my $res = GET $url;
-my $c = grep { / Apache2::SizeLimit httpd process too big/ } Apache::TestUtil::t_finish_error_log_watch();
+my $c = grep { /Apache2::SizeLimit httpd process too big/ } Apache::TestUtil::t_finish_error_log_watch();
 ok $c == 1;