Fix spelling error
Dave Rolsky [Sun, 23 Jan 2011 17:36:47 +0000 (11:36 -0600)]
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'
     );
 }