mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix semantics of test names for finish option in batches_test
- The change was added in #23099
This commit is contained in:
parent
c60fb74dc6
commit
b13a00ede6
1 changed files with 2 additions and 2 deletions
|
@ -108,7 +108,7 @@ class EachTest < ActiveRecord::TestCase
|
|||
end
|
||||
end
|
||||
|
||||
def test_find_in_batches_should_finish_the_end_option
|
||||
def test_find_in_batches_should_end_at_the_finish_option
|
||||
assert_queries(6) do
|
||||
Post.find_in_batches(batch_size: 1, finish: 5) do |batch|
|
||||
assert_kind_of Array, batch
|
||||
|
@ -316,7 +316,7 @@ class EachTest < ActiveRecord::TestCase
|
|||
end
|
||||
end
|
||||
|
||||
def test_in_batches_should_finish_the_end_option
|
||||
def test_in_batches_should_end_at_the_finish_option
|
||||
post = Post.order('id DESC').where('id <= ?', 5).first
|
||||
assert_queries(7) do
|
||||
relation = Post.in_batches(of: 1, finish: 5, load: true).reverse_each.first
|
||||
|
|
Loading…
Reference in a new issue