X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Froutes.t;h=a38a77a008fc1e08adad7523234f2b0db6ca7c2f;hb=957b8a41cbd77f2ed2493835ddb3abf9ddea2790;hp=fc2557b0d43de7dd8fa46e2920a633b7bf035faf;hpb=ffc588239001d163a5c27429a48ac4637bdf37dd;p=catagits%2FCatalystX-Routes.git diff --git a/t/routes.t b/t/routes.t index fc2557b..a38a77a 100644 --- a/t/routes.t +++ b/t/routes.t @@ -86,14 +86,14 @@ use HTTP::Request::Common qw( GET PUT POST DELETE ); is( $MyApp1::Controller::C1::REQ{normal}, 1, - 'GET request for /norma went to the right sub' + 'GET request for /normal went to the right sub' ); request( POST '/normal' ); is( $MyApp1::Controller::C1::REQ{normal}, 2, - 'POST request for /norma went to the right sub' + 'POST request for /normal went to the right sub' ); }