Skip to content

Commit

Permalink
each to each_value; remove unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
vipulnsward committed Apr 7, 2013
1 parent 136e3a4 commit 4f5e8af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -5,7 +5,7 @@ class HasManyThrough < CollectionAssociation #:nodoc:
include ThroughAssociation

def associated_records_by_owner
super.each do |owner, records|
super.each_value do |records|
records.uniq! if reflection_scope.distinct_value
end
end
Expand Down
4 changes: 2 additions & 2 deletions activerecord/test/cases/adapters/sqlite3/copy_table_test.rb
Expand Up @@ -54,7 +54,7 @@ def test_copy_table_without_primary_key
end

def test_copy_table_with_id_col_that_is_not_primary_key
test_copy_table('goofy_string_id', 'goofy_string_id2') do |from, to, options|
test_copy_table('goofy_string_id', 'goofy_string_id2') do
original_id = @connection.columns('goofy_string_id').detect{|col| col.name == 'id' }
copied_id = @connection.columns('goofy_string_id2').detect{|col| col.name == 'id' }
assert_equal original_id.type, copied_id.type
Expand All @@ -65,7 +65,7 @@ def test_copy_table_with_id_col_that_is_not_primary_key
end

def test_copy_table_with_unconventional_primary_key
test_copy_table('owners', 'owners_unconventional') do |from, to, options|
test_copy_table('owners', 'owners_unconventional') do
original_pk = @connection.primary_key('owners')
copied_pk = @connection.primary_key('owners_unconventional')
assert_equal original_pk, copied_pk
Expand Down

0 comments on commit 4f5e8af

Please sign in to comment.