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/04 20:42:50 UTC

svn commit: r428842 - /httpd/apreq/trunk/glue/perl/t/response/TestAPI/cookie.pm

Author: pgollucci
Date: Fri Aug  4 11:42:50 2006
New Revision: 428842

URL: http://svn.apache.org/viewvc?rev=428842&view=rev
Log:
# 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) 

Reported by: Arshavir Grigorian <gr...@gmail.com>


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

Modified: httpd/apreq/trunk/glue/perl/t/response/TestAPI/cookie.pm
URL: http://svn.apache.org/viewvc/httpd/apreq/trunk/glue/perl/t/response/TestAPI/cookie.pm?rev=428842&r1=428841&r2=428842&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/t/response/TestAPI/cookie.pm (original)
+++ httpd/apreq/trunk/glue/perl/t/response/TestAPI/cookie.pm Fri Aug  4 11:42:50 2006
@@ -52,7 +52,7 @@
     ok t_cmp $_->is_tainted, 0, "not tainted: $_" for values %$jar;
 
     eval { $jar->cookie_class("APR::Request::Param") };
-    ok t_cmp qr/^Usage/, $@, "Bad class name";
+    ok t_cmp $@, qr/^Usage/, "Bad class name";
 
 
     ok t_cmp $jar->cookie_class(), "APR::Request::Cookie", "old class";