stas 2004/09/28 15:38:46
Modified: t/filter both_str_req_proxy.t
Log:
need to use need() if there is more than one skip condition
Revision Changes Path
1.4 +1 -1 modperl-2.0/t/filter/both_str_req_proxy.t
Index: both_str_req_proxy.t
===================================================================
RCS file: /home/cvs/modperl-2.0/t/filter/both_str_req_proxy.t,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -u -r1.3 -r1.4
--- both_str_req_proxy.t 3 Aug 2004 16:16:20 -0000 1.3
+++ both_str_req_proxy.t 28 Sep 2004 22:38:46 -0000 1.4
@@ -5,7 +5,7 @@
use Apache::TestRequest;
use Apache::TestUtil;
-plan tests => 1, (need_module('proxy') && need_access);
+plan tests => 1, need need_module('proxy'), need_access;
my $data = join ' ', 'A'..'Z', 0..9;
my $expected = lc $data; # that's what the input filter does