From b194c655b56a101e25df90de3ba58842cba9b9ba Mon Sep 17 00:00:00 2001 From: Aron Roberts Date: Mon, 20 Sep 2010 22:04:28 +0000 Subject: [PATCH] CSPACE-2783: Trivial tweak to short identifiers, display names in Intakes service client test of referencing objects for organization items, to better distinguish organizations from persons. --- .../client/test/OrganizationAuthRefDocsTest.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/services/intake/client/src/test/java/org/collectionspace/services/client/test/OrganizationAuthRefDocsTest.java b/services/intake/client/src/test/java/org/collectionspace/services/client/test/OrganizationAuthRefDocsTest.java index cd949690f..192b16d2f 100644 --- a/services/intake/client/src/test/java/org/collectionspace/services/client/test/OrganizationAuthRefDocsTest.java +++ b/services/intake/client/src/test/java/org/collectionspace/services/client/test/OrganizationAuthRefDocsTest.java @@ -177,26 +177,27 @@ public class OrganizationAuthRefDocsTest extends BaseServiceTest { Assert.assertEquals(statusCode, STATUS_CREATED); orgAuthCSID = extractId(res); - currentOwnerOrgCSID = createOrganization("olivierOwner", "Olivier Owner", "Olivier Owner"); + currentOwnerOrgCSID = createOrganization("olivierOwnerCompany", "Olivier Owner Company", "Olivier Owner Company"); orgIdsCreated.add(currentOwnerOrgCSID); currentOwnerRefName = OrgAuthorityClientUtils.getOrgRefName(orgAuthCSID, currentOwnerOrgCSID, orgAuthClient); - String newOrgCSID = createOrganization("debbieDepositor", "Debbie Depositor", "Debbie Depositor"); + String newOrgCSID = + createOrganization("debbieDepositorAssocs", "Debbie Depositor & Associates", "Debbie Depositor & Associates"); depositorRefName = OrgAuthorityClientUtils.getOrgRefName(orgAuthCSID, newOrgCSID, orgAuthClient); orgIdsCreated.add(newOrgCSID); - newOrgCSID = createOrganization("andrewCheckerAssessor", "Andrew Checker-Assessor", "Andrew Checker-Assessor"); + newOrgCSID = createOrganization("andrewCheckerAssessorLtd", "Andrew Checker-Assessor Ltd.", "Andrew Checker-Assessor Ltd."); conditionCheckerAssessorRefName = OrgAuthorityClientUtils.getOrgRefName(orgAuthCSID, newOrgCSID, orgAuthClient); orgIdsCreated.add(newOrgCSID); - newOrgCSID = createOrganization("ingridInsurer", "Ingrid Insurer", "Ingrid Insurer"); + newOrgCSID = createOrganization("ingridInsurerBureau", "Ingrid Insurer Bureau", "Ingrid Insurer Bureau"); insurerRefName = OrgAuthorityClientUtils.getOrgRefName(orgAuthCSID, newOrgCSID, orgAuthClient); orgIdsCreated.add(newOrgCSID); - newOrgCSID = createOrganization("vinceValuer", "Vince Valuer", "Vince Valuer"); + newOrgCSID = createOrganization("vinceValuerLLC", "Vince Valuer LLC", "Vince Valuer LLC"); valuerRefName = OrgAuthorityClientUtils.getOrgRefName(orgAuthCSID, newOrgCSID, orgAuthClient); orgIdsCreated.add(newOrgCSID); -- 2.47.3