diff options
Diffstat (limited to 'railties')
-rw-r--r-- | railties/test/application/rack/logger_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/application/rack/logger_test.rb b/railties/test/application/rack/logger_test.rb index 1e134083db..c13f9a49e7 100644 --- a/railties/test/application/rack/logger_test.rb +++ b/railties/test/application/rack/logger_test.rb @@ -31,13 +31,13 @@ module ApplicationTests end test "logger logs HTTP verb override" do - post "/", _method: 'put' + post "/", :_method => 'put' wait assert_match 'Started PUT "/"', logs end test "logger logs HEAD requests" do - post "/", _method: 'head' + post "/", :_method => 'head' wait assert_match 'Started HEAD "/"', logs end |