diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2019-03-10 01:38:54 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-10 01:38:54 +0900 |
commit | 6fc1bd6eea4373d869acc25354e5b4adfecc5758 (patch) | |
tree | 31b775b83f1dabe82269ba9bdc73a6fe9ff7a94e /activerecord/test/cases | |
parent | b075bbdc69f1288539db9dd9b6bb2b55bf0c58e6 (diff) | |
parent | fd56f9b5c4c3948fa2f26daf7f7e1ae29eb7c5bb (diff) | |
download | rails-6fc1bd6eea4373d869acc25354e5b4adfecc5758.tar.gz rails-6fc1bd6eea4373d869acc25354e5b4adfecc5758.tar.bz2 rails-6fc1bd6eea4373d869acc25354e5b4adfecc5758.zip |
Merge pull request #35555 from shailesh-kalamkar/fix-autosave-association-test-typo
Fix autosave_association_test.rb typo
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/autosave_association_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/autosave_association_test.rb b/activerecord/test/cases/autosave_association_test.rb index 88df0eed55..54eb885f6a 100644 --- a/activerecord/test/cases/autosave_association_test.rb +++ b/activerecord/test/cases/autosave_association_test.rb @@ -1806,7 +1806,7 @@ class TestAutosaveAssociationOnAHasManyAssociationWithInverse < ActiveRecord::Te end class TestAutosaveAssociationOnAHasManyAssociationDefinedInSubclassWithAcceptsNestedAttributes < ActiveRecord::TestCase - def test_should_update_children_when_asssociation_redefined_in_subclass + def test_should_update_children_when_association_redefined_in_subclass agency = Agency.create!(name: "Agency") valid_project = Project.create!(firm: agency, name: "Initial") agency.update!( |