aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/eager_test.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-11-18 10:01:21 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2010-11-18 10:01:29 -0800
commit26923756fb23eb9c2993a365f9819027f20d5e77 (patch)
tree6debf9e84473b55c8da686eae72e0f046ac50e4d /activerecord/test/cases/associations/eager_test.rb
parentc5a284f8eb6113f06030ea7a18543905146e8768 (diff)
downloadrails-26923756fb23eb9c2993a365f9819027f20d5e77.tar.gz
rails-26923756fb23eb9c2993a365f9819027f20d5e77.tar.bz2
rails-26923756fb23eb9c2993a365f9819027f20d5e77.zip
removing space errors
Diffstat (limited to 'activerecord/test/cases/associations/eager_test.rb')
-rw-r--r--activerecord/test/cases/associations/eager_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/eager_test.rb b/activerecord/test/cases/associations/eager_test.rb
index c532522e76..c00b8a1cde 100644
--- a/activerecord/test/cases/associations/eager_test.rb
+++ b/activerecord/test/cases/associations/eager_test.rb
@@ -102,7 +102,7 @@ class EagerAssociationTest < ActiveRecord::TestCase
posts = Post.find(:all, :include=>:categories)
assert_equal 7, posts.size
end
-
+
def test_load_associated_records_in_one_query_when_adapter_has_no_limit
Post.connection.expects(:ids_in_list_limit).at_least_once.returns(nil)
Post.expects(:i_was_called).with([1,2,3,4,5,6,7]).returns([1])