Author: randyk Date: Tue Mar 8 07:01:07 2005 New Revision: 156534 URL: http://svn.apache.org/viewcvs?view=rev&rev=156534 Log: chomp the response.
Modified: perl/modperl/branches/apache2-rename-unstable/t/filter/out_str_req_mix.t Modified: perl/modperl/branches/apache2-rename-unstable/t/filter/out_str_req_mix.t URL: http://svn.apache.org/viewcvs/perl/modperl/branches/apache2-rename-unstable/t/filter/out_str_req_mix.t?view=diff&r1=156533&r2=156534 ============================================================================== --- perl/modperl/branches/apache2-rename-unstable/t/filter/out_str_req_mix.t (original) +++ perl/modperl/branches/apache2-rename-unstable/t/filter/out_str_req_mix.t Tue Mar 8 07:01:07 2005 @@ -13,6 +13,7 @@ my $expected = 'This is a clear text'; my $received = POST_BODY $location, content => $content; +chomp $received; ok t_cmp($expected, $received, "mixing output httpd and mod_perl filters, while preserving order");