aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-05-06 17:00:59 +0200
committerJosé Valim <jose.valim@gmail.com>2011-05-06 17:00:59 +0200
commit0e5adbceb7d49f3448eec32a7068807f571bf76c (patch)
tree25dc55ba5baa1f29bc4c5b2e1a4299fd062a2fdf /actionpack/test/dispatch
parentd42bb6843073b876e6a79e396a947c267fcbbf75 (diff)
downloadrails-0e5adbceb7d49f3448eec32a7068807f571bf76c.tar.gz
rails-0e5adbceb7d49f3448eec32a7068807f571bf76c.tar.bz2
rails-0e5adbceb7d49f3448eec32a7068807f571bf76c.zip
Don't pluralize, camelize.
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r--actionpack/test/dispatch/show_exceptions_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/dispatch/show_exceptions_test.rb b/actionpack/test/dispatch/show_exceptions_test.rb
index cc57a6cba0..42f6c7f79f 100644
--- a/actionpack/test/dispatch/show_exceptions_test.rb
+++ b/actionpack/test/dispatch/show_exceptions_test.rb
@@ -131,11 +131,11 @@ class ShowExceptionsTest < ActionDispatch::IntegrationTest
'action_dispatch.request.parameters' => {
'action' => 'show',
'id' => 'unknown',
- 'controller' => 'featured_tiles'
+ 'controller' => 'featured_tile'
}
})
assert_response 500
- assert_match(/RuntimeError\n in FeaturedTilesController/, body)
+ assert_match(/RuntimeError\n in FeaturedTileController/, body)
end
test "sets the HTTP charset parameter" do