From 18dd713a2126e2bbd105e9c5280ef77f748c74c6 Mon Sep 17 00:00:00 2001 From: Aron Roberts Date: Fri, 23 Jul 2010 23:05:27 +0000 Subject: [PATCH] CSPACE-2535: Trivial variable name changes to help distinguish between contactNames repeatable field and Contacts sub-resource. --- .../services/client/test/OrgAuthorityServiceTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); -- 2.47.3