aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-11-25 10:49:35 -0800
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-11-25 10:49:35 -0800
commita6900a20739cf372e47a8f19954b11005a24de3d (patch)
treeeb8500f02082b6ada0466a999e0afa8c69ecaaa7 /activerecord/test/cases
parentb2c7d2345f3e862f07212635f2a144873e094521 (diff)
parent82de1eda7c8a8f11b65d8edf70c4af7ce08507ec (diff)
downloadrails-a6900a20739cf372e47a8f19954b11005a24de3d.tar.gz
rails-a6900a20739cf372e47a8f19954b11005a24de3d.tar.bz2
rails-a6900a20739cf372e47a8f19954b11005a24de3d.zip
Merge pull request #13034 from vipulnsward/some_typos
Fix some minor typos
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/associations/has_many_associations_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/has_many_associations_test.rb b/activerecord/test/cases/associations/has_many_associations_test.rb
index 359bcfba5f..a025d49fa3 100644
--- a/activerecord/test/cases/associations/has_many_associations_test.rb
+++ b/activerecord/test/cases/associations/has_many_associations_test.rb
@@ -104,7 +104,7 @@ class HasManyAssociationsTest < ActiveRecord::TestCase
car = Car.create(:name => 'honda')
car.funky_bulbs.create!
assert_nothing_raised { car.reload.funky_bulbs.delete_all }
- assert_equal 0, Bulb.count, "bulbs should have been deleted using :delete_all strategey"
+ assert_equal 0, Bulb.count, "bulbs should have been deleted using :delete_all strategy"
end
def test_building_the_associated_object_with_implicit_sti_base_class