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 jo...@apache.org on 2005/05/25 19:20:23 UTC

svn commit: r178492 - /httpd/apreq/trunk/glue/perl/t/response/TestAPI/param.pm

Author: joes
Date: Wed May 25 10:20:23 2005
New Revision: 178492

URL: http://svn.apache.org/viewcvs?rev=178492&view=rev
Log:
Fix s/jar/args/ cut&paste typo.

 

Modified:
    httpd/apreq/trunk/glue/perl/t/response/TestAPI/param.pm

Modified: httpd/apreq/trunk/glue/perl/t/response/TestAPI/param.pm
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/t/response/TestAPI/param.pm?rev=178492&r1=178491&r2=178492&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/t/response/TestAPI/param.pm (original)
+++ httpd/apreq/trunk/glue/perl/t/response/TestAPI/param.pm Wed May 25 10:20:23 2005
@@ -55,7 +55,7 @@
     eval { $args->param_class("APR::Request::Cookie") };
     ok t_cmp qr/^Usage/, $@, "Bad class name";
 
-    ok t_cmp $jar->param_class(), "APR::Request::Param", "old class";
+    ok t_cmp $args->param_class(), "APR::Request::Param", "old class";
     ok t_cmp $args->param_class(__PACKAGE__), $args, "class upgrade";
     ok $args->{foo}->isa(__PACKAGE__);