stas        2004/07/08 00:39:04

  Modified:    t/compat conn_authen.t
               t/hooks  authen.t
  Log:
  fix bogus skip requirements. (\&have_lwp && \&have_auth) is always == 1
  
  Revision  Changes    Path
  1.4       +1 -1      modperl-2.0/t/compat/conn_authen.t
  
  Index: conn_authen.t
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/compat/conn_authen.t,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -u -r1.3 -r1.4
  --- conn_authen.t     16 Jun 2004 17:03:27 -0000      1.3
  +++ conn_authen.t     8 Jul 2004 07:39:03 -0000       1.4
  @@ -4,7 +4,7 @@
   use Apache::Test;
   use Apache::TestRequest;
   
  -plan tests => 1, (\&have_lwp && \&have_auth);
  +plan tests => 1, have_lwp && have_auth;
   
   my $location = "/TestCompat__conn_authen";
   
  
  
  
  1.7       +1 -1      modperl-2.0/t/hooks/authen.t
  
  Index: authen.t
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/hooks/authen.t,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -u -r1.6 -r1.7
  --- authen.t  16 Jun 2004 17:03:27 -0000      1.6
  +++ authen.t  8 Jul 2004 07:39:04 -0000       1.7
  @@ -4,7 +4,7 @@
   use Apache::Test;
   use Apache::TestRequest;
   
  -plan tests => 4, (\&have_lwp && \&have_auth);
  +plan tests => 4, have_lwp && have_auth;
   
   my $location = "/TestHooks__authen";
   
  
  
  

Reply via email to