diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-10-27 16:45:07 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2017-10-27 16:45:07 +0900 |
commit | c6115fea425ca0b6ce85dcab15be33166ad8ae9f (patch) | |
tree | aaef2f69b907db0582626d916876631c1ff5122d /activerecord/test/cases/associations | |
parent | e0025fe34d7befaaafe44f0ba3a4c0d8f6c60cc4 (diff) | |
download | rails-c6115fea425ca0b6ce85dcab15be33166ad8ae9f.tar.gz rails-c6115fea425ca0b6ce85dcab15be33166ad8ae9f.tar.bz2 rails-c6115fea425ca0b6ce85dcab15be33166ad8ae9f.zip |
Fix all `s/trough/through/`
```
% git grep -n trough
activerecord/test/cases/associations/has_many_through_associations_test.rb:1253: def test_has_many_trough_with_scope_that_has_joined_same_table_with_parent_relation
```
Diffstat (limited to 'activerecord/test/cases/associations')
-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 ecebf922c1..046020e310 100644 --- a/activerecord/test/cases/associations/has_many_through_associations_test.rb +++ b/activerecord/test/cases/associations/has_many_through_associations_test.rb @@ -1250,7 +1250,7 @@ class HasManyThroughAssociationsTest < ActiveRecord::TestCase TenantMembership.current_member = nil end - def test_has_many_trough_with_scope_that_has_joined_same_table_with_parent_relation + def test_has_many_through_with_scope_that_has_joined_same_table_with_parent_relation assert_equal authors(:david), Author.joins(:comments_for_first_author).take end |