dougm       02/04/05 23:00:36

  Modified:    t/apache constants.t
               t/apr    constants.t
               t/hooks  trans.t
  Log:
  .t files which use {Apache,APR}::Const outside of httpd, need to "use Apache2 ()"
  
  Revision  Changes    Path
  1.4       +1 -0      modperl-2.0/t/apache/constants.t
  
  Index: constants.t
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/apache/constants.t,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- constants.t       12 Apr 2001 03:01:38 -0000      1.3
  +++ constants.t       6 Apr 2002 07:00:36 -0000       1.4
  @@ -4,6 +4,7 @@
   
   use Test;
   
  +use Apache2 ();
   use Apache::Const -compile => qw(DECLINED :http :common TAKE23 &OPT_EXECCGI);
   use Apache::Const; #defaults to :common
   
  
  
  
  1.2       +1 -0      modperl-2.0/t/apr/constants.t
  
  Index: constants.t
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/apr/constants.t,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- constants.t       11 Apr 2001 22:54:15 -0000      1.1
  +++ constants.t       6 Apr 2002 07:00:36 -0000       1.2
  @@ -4,6 +4,7 @@
   
   use Test;
   
  +use Apache2 ();
   use APR::Const -compile => qw(:common POLLIN);
   use APR::Const qw(:hook);
   
  
  
  
  1.3       +2 -0      modperl-2.0/t/hooks/trans.t
  
  Index: trans.t
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/hooks/trans.t,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- trans.t   20 Dec 2001 03:54:41 -0000      1.2
  +++ trans.t   6 Apr 2002 07:00:36 -0000       1.3
  @@ -3,6 +3,8 @@
   
   use Apache::Test;
   use Apache::TestRequest;
  +
  +use Apache2 ();
   use Apache::Const ':common';
   
   plan tests => 3;
  
  
  


Reply via email to