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 st...@apache.org on 2003/05/13 11:21:02 UTC

cvs commit: modperl-2.0/t/filter in_init_basic.t

stas        2003/05/13 02:21:02

  Modified:    t/filter in_init_basic.t
  Log:
  adjust the expected data, as the filter is now called once less
  
  Revision  Changes    Path
  1.3       +1 -1      modperl-2.0/t/filter/in_init_basic.t
  
  Index: in_init_basic.t
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/filter/in_init_basic.t,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- in_init_basic.t	18 Apr 2003 06:18:56 -0000	1.2
  +++ in_init_basic.t	13 May 2003 09:21:02 -0000	1.3
  @@ -8,7 +8,7 @@
   plan tests => 1;
   
   my $content = "content ok\n";
  -my $expected = join '', $content, "init 1\n", "run 2\n";
  +my $expected = join '', $content, "init 1\n", "run 1\n";
   
   my $location = '/TestFilter__in_init_basic';
   my $response = POST_BODY $location, content => $content;