X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/76e20e694fbe708e17e57a2e0b1c36aca6e8d7d0..439e1417599cad4e65d506a11b583a6ebabc7604:/services/api/test/unit/group_test.rb diff --git a/services/api/test/unit/group_test.rb b/services/api/test/unit/group_test.rb index 6b419ad64a..97977a5d56 100644 --- a/services/api/test/unit/group_test.rb +++ b/services/api/test/unit/group_test.rb @@ -5,9 +5,10 @@ class GroupTest < ActiveSupport::TestCase test "cannot set owner_uuid to object with existing ownership cycle" do set_user_from_auth :active_trustedclient - # First make sure we have lots of permission on the bad group + # First make sure we have lots of permission on the bad group by + # renaming it to "{current name} is mine all mine" g = groups(:bad_group_has_ownership_cycle_b) - g.name += " xyz" + g.name += " is mine all mine" assert g.save, "active user should be able to modify group #{g.uuid}" # Use the group as the owner of a new object @@ -17,7 +18,7 @@ class GroupTest < ActiveSupport::TestCase assert_equal false, s.save, "should not save object with #{g.uuid} as owner" # Use the group as the new owner of an existing object - s = specimens(:in_afolder) + s = specimens(:in_aproject) s.owner_uuid = groups(:bad_group_has_ownership_cycle_b).uuid assert s.valid?, "ownership should pass validation" assert_equal false, s.save, "should not save object with #{g.uuid} as owner"