diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2013-08-01 11:14:59 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2013-08-01 11:43:51 -0700 |
commit | 2733e7d9902a1cf4833619e764d8069a4523d82e (patch) | |
tree | 80362191ced0ce36d64c662a9dc690f005cf409a | |
parent | 468d5b1cbb8c470a15228b6fd5c97be4741abcd3 (diff) | |
download | rails-2733e7d9902a1cf4833619e764d8069a4523d82e.tar.gz rails-2733e7d9902a1cf4833619e764d8069a4523d82e.tar.bz2 rails-2733e7d9902a1cf4833619e764d8069a4523d82e.zip |
no need to define the constant twice
-rw-r--r-- | activerecord/test/cases/associations/extension_test.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/extension_test.rb b/activerecord/test/cases/associations/extension_test.rb index b1dacaefcc..4c1fdfdd9a 100644 --- a/activerecord/test/cases/associations/extension_test.rb +++ b/activerecord/test/cases/associations/extension_test.rb @@ -61,7 +61,6 @@ class AssociationsExtensionsTest < ActiveRecord::TestCase def test_extension_name extend!(Developer) extend!(MyApplication::Business::Developer) - extend!(MyApplication::Business::Developer) assert Object.const_get 'DeveloperAssociationNameAssociationExtension' assert MyApplication::Business.const_get 'DeveloperAssociationNameAssociationExtension' |