randyk 2004/07/09 14:55:53
Modified: t/response/TestVhost config.pm Log: swap order of args to t_cmp in t/vhost tests to use new ($received, $expected, $comment) syntax. Revision Changes Path 1.4 +1 -1 modperl-2.0/t/response/TestVhost/config.pm Index: config.pm =================================================================== RCS file: /home/cvs/modperl-2.0/t/response/TestVhost/config.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- config.pm 22 Apr 2004 22:30:56 -0000 1.3 +++ config.pm 9 Jul 2004 21:55:53 -0000 1.4 @@ -27,7 +27,7 @@ { my $expected = $r->document_root; my $received = $r->dir_config->get('DocumentRootCheck'); - ok t_cmp(canonpath($expected), canonpath($received), "DocumentRoot"); + ok t_cmp(canonpath($received), canonpath($expected), "DocumentRoot"); } Apache::OK;