diff options
author | Manoj <manoj.mk27@gmail.com> | 2012-02-01 23:55:01 +0530 |
---|---|---|
committer | Manoj <manoj.mk27@gmail.com> | 2012-02-01 23:58:20 +0530 |
commit | 907d19343ebe2f0807337e0fda83b23076f87383 (patch) | |
tree | b7c989d3754933a83fa8f7f9576ae09c71357a14 /activerecord/test/cases/associations | |
parent | 049dc500b632ca1a05d41a0c5454946f24d15035 (diff) | |
download | rails-907d19343ebe2f0807337e0fda83b23076f87383.tar.gz rails-907d19343ebe2f0807337e0fda83b23076f87383.tar.bz2 rails-907d19343ebe2f0807337e0fda83b23076f87383.zip |
fix has_one, has_many restrict error message
Diffstat (limited to 'activerecord/test/cases/associations')
-rw-r--r-- | activerecord/test/cases/associations/has_many_associations_test.rb | 2 | ||||
-rw-r--r-- | activerecord/test/cases/associations/has_one_associations_test.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/cases/associations/has_many_associations_test.rb b/activerecord/test/cases/associations/has_many_associations_test.rb index ab1e821aab..f2af892840 100644 --- a/activerecord/test/cases/associations/has_many_associations_test.rb +++ b/activerecord/test/cases/associations/has_many_associations_test.rb @@ -1171,7 +1171,7 @@ class HasManyAssociationsTest < ActiveRecord::TestCase assert !firm.errors.empty? - assert_equal "Cannot delete record because dependent company exists", firm.errors[:base].first + assert_equal "Cannot delete record because dependent companies exist", firm.errors[:base].first assert RestrictedFirm.exists?(:name => 'restrict') assert firm.companies.exists?(:name => 'child') ensure diff --git a/activerecord/test/cases/associations/has_one_associations_test.rb b/activerecord/test/cases/associations/has_one_associations_test.rb index 37be6a279d..c2548e33c5 100644 --- a/activerecord/test/cases/associations/has_one_associations_test.rb +++ b/activerecord/test/cases/associations/has_one_associations_test.rb @@ -184,7 +184,7 @@ class HasOneAssociationsTest < ActiveRecord::TestCase firm.destroy assert !firm.errors.empty? - assert_equal "Cannot delete record because dependent account exists", firm.errors[:base].first + assert_equal "Cannot delete record because a dependent account exists", firm.errors[:base].first assert RestrictedFirm.exists?(:name => 'restrict') assert firm.account.present? ensure |