You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by st...@apache.org on 2004/12/06 19:23:52 UTC

svn commit: r110000 - /httpd/apreq/branches/1.x/t/apreq/cookie.t

Author: stas
Date: Mon Dec  6 10:23:50 2004
New Revision: 110000

URL: http://svn.apache.org/viewcvs?view=rev&rev=110000
Log:
can't use HTTP::Cookies w/o LWP (use require)

Modified:
   httpd/apreq/branches/1.x/t/apreq/cookie.t

Modified: httpd/apreq/branches/1.x/t/apreq/cookie.t
Url: http://svn.apache.org/viewcvs/httpd/apreq/branches/1.x/t/apreq/cookie.t?view=diff&rev=110000&p1=httpd/apreq/branches/1.x/t/apreq/cookie.t&r1=109999&p2=httpd/apreq/branches/1.x/t/apreq/cookie.t&r2=110000
==============================================================================
--- httpd/apreq/branches/1.x/t/apreq/cookie.t	(original)
+++ httpd/apreq/branches/1.x/t/apreq/cookie.t	Mon Dec  6 10:23:50 2004
@@ -5,9 +5,10 @@
 
 use Apache::TestUtil;
 use Apache::TestRequest qw(GET_BODY);
-use HTTP::Cookies;
 
 plan tests => 1, &need_lwp;
+
+require HTTP::Cookies;
 
 my $location = "/TestApReq__cookie";