aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-01-13 15:10:45 -0800
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-01-13 15:10:45 -0800
commit7e02effa7a750de93472e97bef675d4683c553b4 (patch)
tree5b451f513a83ef8b7809092365ed7c20ebd9b256
parentd220e8add9071ffcc12bfe8cf78c995ef53cb6d4 (diff)
parentfd68adc8a9b5d3c917542d9b0c22359715e04c8a (diff)
downloadrails-7e02effa7a750de93472e97bef675d4683c553b4.tar.gz
rails-7e02effa7a750de93472e97bef675d4683c553b4.tar.bz2
rails-7e02effa7a750de93472e97bef675d4683c553b4.zip
Merge pull request #13704 from waynn/patch-4
"serie" => "series"
-rw-r--r--actionview/test/template/form_collections_helper_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/test/template/form_collections_helper_test.rb b/actionview/test/template/form_collections_helper_test.rb
index 7a62b9d907..18632465db 100644
--- a/actionview/test/template/form_collections_helper_test.rb
+++ b/actionview/test/template/form_collections_helper_test.rb
@@ -182,7 +182,7 @@ class FormCollectionsHelperTest < ActionView::TestCase
end
# COLLECTION CHECK BOXES
- test 'collection check boxes accepts a collection and generate a serie of checkboxes for value method' do
+ test 'collection check boxes accepts a collection and generate a series of checkboxes for value method' do
collection = [Category.new(1, 'Category 1'), Category.new(2, 'Category 2')]
with_collection_check_boxes :user, :category_ids, collection, :id, :name
@@ -204,7 +204,7 @@ class FormCollectionsHelperTest < ActionView::TestCase
assert_select "input[type=hidden][name='user[other_category_ids][]'][value=]", :count => 1
end
- test 'collection check boxes accepts a collection and generate a serie of checkboxes with labels for label method' do
+ test 'collection check boxes accepts a collection and generate a series of checkboxes with labels for label method' do
collection = [Category.new(1, 'Category 1'), Category.new(2, 'Category 2')]
with_collection_check_boxes :user, :category_ids, collection, :id, :name