:cut: whitespace

This commit is contained in:
Aaron Patterson 2013-10-30 14:17:54 -07:00
parent 45318e4010
commit 1d75efed84

@ -1186,10 +1186,10 @@ def test_deep_including_through_habtm
author = Author.includes(:posts).references(:posts).reorder(:name).find_by('posts.title IS NOT NULL')
assert_equal authors(:bob), author
end
test "preloading with a polymorphic association and using the existential predicate" do
assert_equal authors(:david), authors(:david).essays.includes(:writer).first.writer
assert_nothing_raised do
authors(:david).essays.includes(:writer).any?
end