diff options
author | Himesh <himesh.rupareliya@gmail.com> | 2015-07-23 15:49:22 +0530 |
---|---|---|
committer | Arthur Neves <arthurnn@gmail.com> | 2016-02-02 23:36:31 -0500 |
commit | 9c9fb19b9eda46a76d7ce4fd6cb9cc94bd965e62 (patch) | |
tree | e85a708ffcf2b8790c611716aa7769ddc23b4875 /activerecord/test | |
parent | 0e189cb3df7899bd99697a40b9e5f6316299ac04 (diff) | |
download | rails-9c9fb19b9eda46a76d7ce4fd6cb9cc94bd965e62.tar.gz rails-9c9fb19b9eda46a76d7ce4fd6cb9cc94bd965e62.tar.bz2 rails-9c9fb19b9eda46a76d7ce4fd6cb9cc94bd965e62.zip |
Changed id-writer to save join table records based on association primary key #20995
Changed id-writer to save join table records based on association primary key
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/associations/has_many_through_associations_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/has_many_through_associations_test.rb b/activerecord/test/cases/associations/has_many_through_associations_test.rb index ce2557339e..20ced1feb5 100644 --- a/activerecord/test/cases/associations/has_many_through_associations_test.rb +++ b/activerecord/test/cases/associations/has_many_through_associations_test.rb @@ -882,7 +882,7 @@ class HasManyThroughAssociationsTest < ActiveRecord::TestCase def test_collection_singular_ids_setter_raises_exception_when_invalid_ids_set company = companies(:rails_core) ids = [Developer.first.id, -9999] - assert_raises(ActiveRecord::RecordNotFound) {company.developer_ids= ids} + assert_raises(ActiveRecord::AssociationTypeMismatch) {company.developer_ids= ids} end def test_build_a_model_from_hm_through_association_with_where_clause |