joes 2004/07/21 19:36:42
Modified: glue/perl/t/response/TestApReq inherit.pm
Log:
In prior change: s/cookie/cookies/ for Apache::Cookie::Jar, I forgot to sync
the cookie test in inherit.pm (a big commit is coming soonish, so my local tree
is significantly out of whack now). Thanks to Markus Wichitill for the spot.
Revision Changes Path
1.6 +1 -1 httpd-apreq-2/glue/perl/t/response/TestApReq/inherit.pm
Index: inherit.pm
===================================================================
RCS file: /home/cvs/httpd-apreq-2/glue/perl/t/response/TestApReq/inherit.pm,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- inherit.pm 9 Feb 2004 21:58:37 -0000 1.5
+++ inherit.pm 22 Jul 2004 02:36:42 -0000 1.6
@@ -15,7 +15,7 @@
my $j = Apache::Cookie->jar($r->env);
my $req = bless { r => $r, j => $j };
$req->printf("method => %s\n", $req->method);
- $req->printf("cookie => %s\n", $req->cookie("apache")->as_string);
+ $req->printf("cookie => %s\n", $req->cookies("apache")->as_string);
return 0;
}