From: Aron Roberts Date: Fri, 23 Jul 2010 23:05:27 +0000 (+0000) Subject: CSPACE-2535: Trivial variable name changes to help distinguish between contactNames... X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=18dd713a2126e2bbd105e9c5280ef77f748c74c6;p=tmp%2Fjakarta-migration.git CSPACE-2535: Trivial variable name changes to help distinguish between contactNames repeatable field and Contacts sub-resource. --- diff --git a/services/organization/client/src/test/java/org/collectionspace/services/client/test/OrgAuthorityServiceTest.java b/services/organization/client/src/test/java/org/collectionspace/services/client/test/OrgAuthorityServiceTest.java index 1f3ffb09a..1c74846e0 100644 --- a/services/organization/client/src/test/java/org/collectionspace/services/client/test/OrgAuthorityServiceTest.java +++ b/services/organization/client/src/test/java/org/collectionspace/services/client/test/OrgAuthorityServiceTest.java @@ -234,10 +234,10 @@ public class OrgAuthorityServiceTest extends AbstractServiceTestImpl { testOrgMap.put(OrganizationJAXBSchema.FOUNDING_PLACE, TEST_ORG_FOUNDING_PLACE); Map> testOrgRepeatablesMap = new HashMap>(); - List testOrgContacts = new ArrayList(); - testOrgContacts.add("joe@example.org"); - testOrgContacts.add("sally@example.org"); - testOrgRepeatablesMap.put(OrganizationJAXBSchema.CONTACT_NAMES, testOrgContacts); + List testOrgContactNames = new ArrayList(); + testOrgContactNames.add("joe@example.org"); + testOrgContactNames.add("sally@example.org"); + testOrgRepeatablesMap.put(OrganizationJAXBSchema.CONTACT_NAMES, testOrgContactNames); String newID = OrgAuthorityClientUtils.createItemInAuthority( vcsid, authRefName, testOrgMap, testOrgRepeatablesMap, client);