aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorMolchanov Andrey <neodelf@gmail.com>2016-05-12 22:45:18 +0300
committerMolchanov Andrey <neodelf@gmail.com>2016-05-12 22:45:18 +0300
commit37f2674d6497625d666bfac3509a8651f591e6cc (patch)
tree90207cab450ad0880caa8eaa0aa45c922016274b /activerecord
parent6007e584d824225e51f47ba0684d48ea3eb8f518 (diff)
downloadrails-37f2674d6497625d666bfac3509a8651f591e6cc.tar.gz
rails-37f2674d6497625d666bfac3509a8651f591e6cc.tar.bz2
rails-37f2674d6497625d666bfac3509a8651f591e6cc.zip
Rename test method
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/associations/has_many_through_associations_test.rb2
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 aff0dabee7..aa35844a03 100644
--- a/activerecord/test/cases/associations/has_many_through_associations_test.rb
+++ b/activerecord/test/cases/associations/has_many_through_associations_test.rb
@@ -65,7 +65,7 @@ class HasManyThroughAssociationsTest < ActiveRecord::TestCase
Class.new(ActiveRecord::Base) { define_singleton_method(:name) { name } }
end
- def test_ordered_habtm
+ def test_ordered_has_many_through
person_prime = Class.new(ActiveRecord::Base) do
def self.name; 'Person'; end