X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/fe08de0ddf1d3e536cb3518dcb9c82ca62197273..a048d6957ff6284c4234198ed9b868bff07d057f:/services/api/test/unit/container_test.rb diff --git a/services/api/test/unit/container_test.rb b/services/api/test/unit/container_test.rb index 783d2a985f..1a53df7dab 100644 --- a/services/api/test/unit/container_test.rb +++ b/services/api/test/unit/container_test.rb @@ -956,23 +956,4 @@ class ContainerTest < ActiveSupport::TestCase assert_no_secrets_logged end end - - # NOTE: Migration 20190322174136_add_file_info_to_collection.rb - # relies on this test. Change with caution! - test "pdh_grouping_by_manifest_size" do - batch_size_max = 200 - pdhs_in = ['x1+30', 'x2+30', 'x3+201', 'x4+100', 'x5+100'] - pdh_lambda = lambda { |last_pdh, &block| - pdhs = pdhs_in.select{|pdh| pdh > last_pdh} - pdhs.each do |p| - block.call(p) - end - } - batched_pdhs = [] - Container.group_pdhs_for_multiple_transactions(pdh_lambda, pdhs_in.size, batch_size_max, "") do |pdhs| - batched_pdhs << pdhs - end - expected = [['x1+30', 'x2+30'], ['x3+201'], ['x4+100', 'x5+100']] - assert_equal(batched_pdhs, expected) - end end