mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Remove not used variable warnigns
This commit is contained in:
parent
42efdbf23e
commit
4eca91243d
2 changed files with 5 additions and 5 deletions
|
@ -616,8 +616,8 @@ class EagerAssociationTest < ActiveRecord::TestCase
|
|||
general = categories.find { |c| c == categories(:general) }
|
||||
technology = categories.find { |c| c == categories(:technology) }
|
||||
|
||||
post1 = general.posts.to_a.find { |p| p == posts(:welcome) }
|
||||
post2 = technology.posts.to_a.find { |p| p == posts(:welcome) }
|
||||
post1 = general.posts.to_a.find { |p| p == welcome }
|
||||
post2 = technology.posts.to_a.find { |p| p == welcome }
|
||||
|
||||
assert_equal post1.object_id, post2.object_id
|
||||
end
|
||||
|
@ -984,10 +984,10 @@ class EagerAssociationTest < ActiveRecord::TestCase
|
|||
post = Post.create!(:title => 'Beaches', :body => "I like beaches!")
|
||||
Reader.create! :person => people(:david), :post => post
|
||||
LazyReader.create! :person => people(:susan), :post => post
|
||||
|
||||
|
||||
assert_equal 1, post.lazy_readers.to_a.size
|
||||
assert_equal 2, post.lazy_readers_skimmers_or_not.to_a.size
|
||||
|
||||
|
||||
post_with_readers = Post.includes(:lazy_readers_skimmers_or_not).find(post.id)
|
||||
assert_equal 2, post_with_readers.lazy_readers_skimmers_or_not.to_a.size
|
||||
end
|
||||
|
|
|
@ -499,7 +499,7 @@ class PersistencesTest < ActiveRecord::TestCase
|
|||
|
||||
def test_update_column_with_one_changed_and_one_updated
|
||||
t = Topic.order('id').limit(1).first
|
||||
title, author_name = t.title, t.author_name
|
||||
author_name = t.author_name
|
||||
t.author_name = 'John'
|
||||
t.update_column(:title, 'super_title')
|
||||
assert_equal 'John', t.author_name
|
||||
|
|
Loading…
Reference in a new issue