Fix spelling error
[catagits/CatalystX-Routes.git] / t / routes.t
index fc2557b..a38a77a 100644 (file)
@@ -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'
     );
 }