mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix some minor typos [ci skip]
This commit is contained in:
parent
051a520b8c
commit
82de1eda7c
2 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@
|
|||
|
||||
*Adam Williams*, *Yves Senn*
|
||||
|
||||
* Fix bug where `has_one` associaton record update result in crash, when replaced with itself.
|
||||
* Fix bug where `has_one` association record update result in crash, when replaced with itself.
|
||||
|
||||
Fixes #12834.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue