From f40e34b82b73a8385691973e1d8ede4fe705d8e3 Mon Sep 17 00:00:00 2001 From: cramakri <cramakri> Date: Thu, 14 Jun 2012 11:21:17 +0000 Subject: [PATCH] MINOR Fixing warnings SVN: 25692 --- .../api/v1/GeneralInformationChangingServiceTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/openbis/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/api/v1/GeneralInformationChangingServiceTest.java b/openbis/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/api/v1/GeneralInformationChangingServiceTest.java index 7fb1d4e2f19..10cca0a1bcd 100644 --- a/openbis/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/api/v1/GeneralInformationChangingServiceTest.java +++ b/openbis/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/api/v1/GeneralInformationChangingServiceTest.java @@ -42,7 +42,7 @@ import ch.systemsx.cisd.openbis.systemtest.SystemTestCase; public class GeneralInformationChangingServiceTest extends SystemTestCase { @Autowired - private ICommonServer commonServer; + private ICommonServer localCommonServer; @Autowired private IGeneralInformationService generalInformationService; @@ -73,12 +73,12 @@ public class GeneralInformationChangingServiceTest extends SystemTestCase public void testUpdateSampleProperties() { TechId id = new TechId(1043L); - commonServer.assignPropertyType(sessionToken, new NewETPTAssignment(EntityKind.SAMPLE, + localCommonServer.assignPropertyType(sessionToken, new NewETPTAssignment(EntityKind.SAMPLE, "DESCRIPTION", "CELL_PLATE", false, null, null, 1L, false, false, null, true)); - commonServer.assignPropertyType(sessionToken, new NewETPTAssignment(EntityKind.SAMPLE, + localCommonServer.assignPropertyType(sessionToken, new NewETPTAssignment(EntityKind.SAMPLE, "GENDER", "CELL_PLATE", false, null, null, 1L, false, false, null, true)); assertProperties("[ANY_MATERIAL: 2 (GENE), BACTERIUM: BACTERIUM-Y (BACTERIUM), " - + "COMMENT: extremely simple stuff, ORGANISM: GORILLA, SIZE: 321]", commonServer + + "COMMENT: extremely simple stuff, ORGANISM: GORILLA, SIZE: 321]", localCommonServer .getSampleInfo(sessionToken, id).getParent()); HashMap<String, String> properties = new HashMap<String, String>(); properties.put("SIZE", "42"); @@ -92,7 +92,7 @@ public class GeneralInformationChangingServiceTest extends SystemTestCase assertProperties("[ANY_MATERIAL: 1 (GENE), BACTERIUM: BACTERIUM-Y (BACTERIUM), " + "COMMENT: extremely simple stuff, DESCRIPTION: hello example, GENDER: FEMALE, " - + "ORGANISM: DOG, SIZE: 42]", commonServer.getSampleInfo(sessionToken, id) + + "ORGANISM: DOG, SIZE: 42]", localCommonServer.getSampleInfo(sessionToken, id) .getParent()); List<PropertyHistory> history = getSamplePropertiesHistory(id.getId()); -- GitLab