diff options
author | Accessd <accessd0@gmail.com> | 2014-10-21 19:46:29 +0400 |
---|---|---|
committer | Accessd <accessd0@gmail.com> | 2014-10-21 19:46:29 +0400 |
commit | 20dcc0ab0acd67f3146cea35bed8127f7628943a (patch) | |
tree | b50972fcf736cd9b8e7cf53ad14e9fdeb530ff12 /actionpack/test/dispatch | |
parent | 42130e8572a7d6b05ec9c2d6531ff87cea37c7e0 (diff) | |
download | rails-20dcc0ab0acd67f3146cea35bed8127f7628943a.tar.gz rails-20dcc0ab0acd67f3146cea35bed8127f7628943a.tar.bz2 rails-20dcc0ab0acd67f3146cea35bed8127f7628943a.zip |
fix small typo in routing test
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r-- | actionpack/test/dispatch/routing_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb index d141210ad9..d0a624784a 100644 --- a/actionpack/test/dispatch/routing_test.rb +++ b/actionpack/test/dispatch/routing_test.rb @@ -4420,7 +4420,7 @@ class TestUrlGenerationErrors < ActionDispatch::IntegrationTest include Routes.url_helpers - test "url helpers raise a helpful error message whem generation fails" do + test "url helpers raise a helpful error message when generation fails" do url, missing = { action: 'show', controller: 'products', id: nil }, [:id] message = "No route matches #{url.inspect} missing required keys: #{missing.inspect}" |