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 pg...@apache.org on 2006/08/03 10:55:53 UTC

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

Author: pgollucci
Date: Thu Aug  3 01:55:52 2006
New Revision: 428286

URL: http://svn.apache.org/viewvc?rev=428286&view=rev
Log:
ok 27
# WARNING!!! t_cmp() argument order has changed.
# use of a regular expression as the first argument
# is deprecated.  support will be removed soon.
# testing : Bad class name
# expected: (?-xism:^Usage)
# received: Usage: APR::Request::Param::Table::param_class($table, $class): class APR::Request::Cookie is not derived from APR::Request::Param at /root/.cpan/build/http

Reported by: Arshavir Grigorian <gr...@gmail.com>
	[off-list e-mail]



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/viewvc/httpd/apreq/trunk/glue/perl/t/response/TestAPI/param.pm?rev=428286&r1=428285&r2=428286&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/t/response/TestAPI/param.pm (original)
+++ httpd/apreq/trunk/glue/perl/t/response/TestAPI/param.pm Thu Aug  3 01:55:52 2006
@@ -53,7 +53,7 @@
 
 
     eval { $args->param_class("APR::Request::Cookie") };
-    ok t_cmp qr/^Usage/, $@, "Bad class name";
+    ok t_cmp $@, qr/^Usage/, "Bad class name";
 
     ok t_cmp $args->param_class(), "APR::Request::Param", "old class";
     ok t_cmp $args->param_class(__PACKAGE__), $args, "class upgrade";