aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/has_many_through_associations_test.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-10-05 11:52:20 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2012-10-05 11:52:20 -0300
commitabf8de85519141496a6773310964ec03f6106f3f (patch)
tree5149d0c61125567f0e704d2f520611a1718e168a /activerecord/test/cases/associations/has_many_through_associations_test.rb
parent5c078368c762ec025997af6b2c94632b2f9301d2 (diff)
downloadrails-abf8de85519141496a6773310964ec03f6106f3f.tar.gz
rails-abf8de85519141496a6773310964ec03f6106f3f.tar.bz2
rails-abf8de85519141496a6773310964ec03f6106f3f.zip
Use flat_map { } instead of map {}.flatten
Diffstat (limited to 'activerecord/test/cases/associations/has_many_through_associations_test.rb')
-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 f0582a3090..c61ed61f1e 100644
--- a/activerecord/test/cases/associations/has_many_through_associations_test.rb
+++ b/activerecord/test/cases/associations/has_many_through_associations_test.rb
@@ -597,7 +597,7 @@ class HasManyThroughAssociationsTest < ActiveRecord::TestCase
sarah = Person.create!(:first_name => 'Sarah', :primary_contact_id => people(:susan).id, :gender => 'F', :number1_fan_id => 1)
john = Person.create!(:first_name => 'John', :primary_contact_id => sarah.id, :gender => 'M', :number1_fan_id => 1)
assert_equal sarah.agents, [john]
- assert_equal people(:susan).agents.map(&:agents).flatten, people(:susan).agents_of_agents
+ assert_equal people(:susan).agents.flat_map(&:agents), people(:susan).agents_of_agents
end
def test_associate_existing_with_nonstandard_primary_key_on_belongs_to