aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/form_options_helper_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/template/form_options_helper_test.rb')
-rw-r--r--actionpack/test/template/form_options_helper_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/test/template/form_options_helper_test.rb b/actionpack/test/template/form_options_helper_test.rb
index 76c556606c..f468b69c7e 100644
--- a/actionpack/test/template/form_options_helper_test.rb
+++ b/actionpack/test/template/form_options_helper_test.rb
@@ -229,7 +229,7 @@ class FormOptionsHelperTest < Test::Unit::TestCase
_erbout = ''
- fields_for :post => @post do |f|
+ fields_for :post, @post do |f|
_erbout.concat f.select(:category, %w( abe <mus> hest))
end
@@ -330,7 +330,7 @@ class FormOptionsHelperTest < Test::Unit::TestCase
_erbout = ''
- fields_for :post => @post do |f|
+ fields_for :post, @post do |f|
_erbout.concat f.collection_select(:author_name, @posts, :author_name, :author_name)
end
@@ -386,7 +386,7 @@ class FormOptionsHelperTest < Test::Unit::TestCase
_erbout = ''
- fields_for :firm => @firm do |f|
+ fields_for :firm, @firm do |f|
_erbout.concat f.time_zone_select(:time_zone)
end