diff options
-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 |