aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/batches_test.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2015-10-29 09:21:57 -0600
committerSean Griffin <sean@seantheprogrammer.com>2015-10-29 09:22:45 -0600
commit4a2d586cfcd58c0d65dfe7e603e4e5e84418801e (patch)
tree0ff5b1bfb55b6d209be0d72c90fc2b6d14874342 /activerecord/test/cases/batches_test.rb
parent59ec8a592d7125f12e33a8aba22b4d2fc4ae301f (diff)
parent7c0f8c64fa1e8e055e2077255843f149e600024b (diff)
downloadrails-4a2d586cfcd58c0d65dfe7e603e4e5e84418801e.tar.gz
rails-4a2d586cfcd58c0d65dfe7e603e4e5e84418801e.tar.bz2
rails-4a2d586cfcd58c0d65dfe7e603e4e5e84418801e.zip
Fix merge conflicts from #19501
I'm making this commit separately because this has failing tests and style nitpicks that I'd like to make as individual commits, to make the changes I'm making explicit. We still want a single merge commit at the end, however.
Diffstat (limited to 'activerecord/test/cases/batches_test.rb')
-rw-r--r--activerecord/test/cases/batches_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/batches_test.rb b/activerecord/test/cases/batches_test.rb
index 9cb70ee239..da65336305 100644
--- a/activerecord/test/cases/batches_test.rb
+++ b/activerecord/test/cases/batches_test.rb
@@ -161,7 +161,7 @@ class EachTest < ActiveRecord::TestCase
end
# posts.first will be ordered using id only. Title order scope should not apply here
assert_not_equal first_post, posts.first
- assert_equal posts(:welcome), posts.first
+ assert_equal posts(:welcome).id, posts.first.id
end
def test_find_in_batches_should_not_ignore_the_default_scope_if_it_is_other_then_order