aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/has_many_associations_test.rb
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2013-11-25 23:56:57 +0530
committerVipul A M <vipulnsward@gmail.com>2013-11-26 00:13:35 +0530
commit82de1eda7c8a8f11b65d8edf70c4af7ce08507ec (patch)
tree4e6f00f37c634ffca55a494b34938e992062ebaa /activerecord/test/cases/associations/has_many_associations_test.rb
parent051a520b8c920cd6ed15f9e237343a306b7bdfa0 (diff)
downloadrails-82de1eda7c8a8f11b65d8edf70c4af7ce08507ec.tar.gz
rails-82de1eda7c8a8f11b65d8edf70c4af7ce08507ec.tar.bz2
rails-82de1eda7c8a8f11b65d8edf70c4af7ce08507ec.zip
Fix some minor typos [ci skip]
Diffstat (limited to 'activerecord/test/cases/associations/has_many_associations_test.rb')
-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