diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-04-03 20:54:48 -0300 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-04-03 20:59:40 -0300 |
commit | e252e0ffe1a410513c36b67fb7729ea56de246c2 (patch) | |
tree | 721c587eb211d3c634de13c909911af19701402a | |
parent | e59f3809efd8905183056c0a965b93df52a6f62e (diff) | |
download | rails-e252e0ffe1a410513c36b67fb7729ea56de246c2.tar.gz rails-e252e0ffe1a410513c36b67fb7729ea56de246c2.tar.bz2 rails-e252e0ffe1a410513c36b67fb7729ea56de246c2.zip |
Use 1.8 hash style in test views
Introduced in 2c22376fe04b89e8f34620139720b85a85ce3428
-rw-r--r-- | actionpack/test/fixtures/test/change_priorty.html.erb | 2 | ||||
-rw-r--r-- | actionpack/test/fixtures/test/html_template.html.erb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/fixtures/test/change_priorty.html.erb b/actionpack/test/fixtures/test/change_priorty.html.erb index 5618977d05..71ecef11c4 100644 --- a/actionpack/test/fixtures/test/change_priorty.html.erb +++ b/actionpack/test/fixtures/test/change_priorty.html.erb @@ -1,2 +1,2 @@ -<%= render :partial => "test/json_change_priority", formats: :json %> +<%= render :partial => "test/json_change_priority", :formats => :json %> HTML Template, but <%= render :partial => "test/changing_priority" %> partial
\ No newline at end of file diff --git a/actionpack/test/fixtures/test/html_template.html.erb b/actionpack/test/fixtures/test/html_template.html.erb index 1bbc2b7f09..1b483357bd 100644 --- a/actionpack/test/fixtures/test/html_template.html.erb +++ b/actionpack/test/fixtures/test/html_template.html.erb @@ -1 +1 @@ -<%= render :partial => "test/first_json_partial", formats: :json %>
\ No newline at end of file +<%= render :partial => "test/first_json_partial", :formats => :json %>
\ No newline at end of file |