From: Rafael Kitover Date: Mon, 22 Jun 2009 02:17:29 +0000 (+0000) Subject: missing / in test file X-Git-Tag: 5.80006~39 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=ddd00df4aedc3a55e04a9ef5109103ebfa8bba4c missing / in test file --- diff --git a/t/lib/TestAppIndexDefault/Controller/Default.pm b/t/lib/TestAppIndexDefault/Controller/Default.pm index f47d023..1009f30 100644 --- a/t/lib/TestAppIndexDefault/Controller/Default.pm +++ b/t/lib/TestAppIndexDefault/Controller/Default.pm @@ -7,7 +7,7 @@ sub default : Private { $c->res->body('default_default'); } -sub path_one_arg : Path('/default') Args(1) { +sub path_one_arg : Path('/default/') Args(1) { my ($self, $c) = @_; $c->res->body('default_path_one_arg'); }