diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-12-03 21:00:14 -0200 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-12-03 21:00:14 -0200 |
commit | 5f28000731f362271419119ebc032a5ff3aacc0a (patch) | |
tree | c32146699d39ae787e72382699b1905091fd890d | |
parent | 9d6e502f81bcf56c7da8a7d1f9e433b4e0a7e3e9 (diff) | |
download | rails-5f28000731f362271419119ebc032a5ff3aacc0a.tar.gz rails-5f28000731f362271419119ebc032a5ff3aacc0a.tar.bz2 rails-5f28000731f362271419119ebc032a5ff3aacc0a.zip |
Use 1.8 hash style
-rw-r--r-- | actionpack/test/controller/new_base/render_template_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/new_base/render_template_test.rb b/actionpack/test/controller/new_base/render_template_test.rb index 94a928e669..c727f03346 100644 --- a/actionpack/test/controller/new_base/render_template_test.rb +++ b/actionpack/test/controller/new_base/render_template_test.rb @@ -117,7 +117,7 @@ module RenderTemplate assert_body "Hello <strong>this is also raw</strong> in a html template" assert_status 200 - get :with_implicit_raw, format: 'text' + get :with_implicit_raw, :format => 'text' assert_body "Hello <strong>this is also raw</strong> in a text template" assert_status 200 |