From: Dave Rolsky Date: Sun, 23 Jan 2011 17:36:47 +0000 (-0600) Subject: Fix spelling error X-Git-Tag: 0.01~22 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalystX-Routes.git;a=commitdiff_plain;h=957b8a41cbd77f2ed2493835ddb3abf9ddea2790 Fix spelling error --- 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' ); }