X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0cefa4c0f3c1b16884b04d6273bd8730166d69ba..2d56bd2e4722e9c664f7605b3a46b505a30782db:/services/api/test/functional/arvados/v1/collections_controller_test.rb diff --git a/services/api/test/functional/arvados/v1/collections_controller_test.rb b/services/api/test/functional/arvados/v1/collections_controller_test.rb index 91802255e1..54ffe66f17 100644 --- a/services/api/test/functional/arvados/v1/collections_controller_test.rb +++ b/services/api/test/functional/arvados/v1/collections_controller_test.rb @@ -698,21 +698,17 @@ EOS end [1, 5, nil].each do |ask| - test "Set replication_desired=#{ask} using redundancy attr" do - # The Python SDK checks the Collection schema in the discovery - # doc, then asks for 'redundancy' or 'replication_desired' - # accordingly, so it isn't necessary to maintain backward - # compatibility here when the attribute changes to - # replication_desired. + test "Set replication_desired=#{ask.inspect}" do + Rails.configuration.default_collection_replication = 2 authorize_with :active put :update, { - id: collections(:collection_owned_by_active).uuid, + id: collections(:replication_undesired_unconfirmed).uuid, collection: { - redundancy: ask, + replication_desired: ask, }, } assert_response :success - assert_equal (ask or 2), json_response['replication_desired'] + assert_equal ask, json_response['replication_desired'] end end