Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/ats/core/client/branch/AtsBranchServiceImplTest.java')
-rw-r--r--plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/ats/core/client/branch/AtsBranchServiceImplTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/ats/core/client/branch/AtsBranchServiceImplTest.java b/plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/ats/core/client/branch/AtsBranchServiceImplTest.java
index 41c31e19bad..0266d5ab0e4 100644
--- a/plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/ats/core/client/branch/AtsBranchServiceImplTest.java
+++ b/plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/ats/core/client/branch/AtsBranchServiceImplTest.java
@@ -64,7 +64,7 @@ public class AtsBranchServiceImplTest {
//Test Team Def-base Team Arts
IAtsChangeSet changes = AtsClientService.get().createChangeSet(getClass().getSimpleName());
IAtsTeamDefinition teamDef = teamArt.getTeamDefinition();
- changes.setSoleAttributeValue(teamDef, AtsAttributeTypes.BaselineBranchUuid, SAW_Bld_1.getUuid().toString());
+ changes.setSoleAttributeValue(teamDef, AtsAttributeTypes.BaselineBranchUuid, SAW_Bld_1.getIdString());
// clear versions to config item is from teamDef
for (IAtsVersion version : teamDef.getVersions()) {
changes.deleteArtifact(version.getStoreObject());
@@ -106,7 +106,7 @@ public class AtsBranchServiceImplTest {
TeamWorkFlowArtifact teamArt = AtsTestUtil.getTeamWf();
IAtsChangeSet changes = AtsClientService.get().createChangeSet(getClass().getSimpleName());
IAtsTeamDefinition teamDef = teamArt.getTeamDefinition();
- changes.setSoleAttributeValue(teamDef, AtsAttributeTypes.BaselineBranchUuid, SAW_Bld_1.getUuid().toString());
+ changes.setSoleAttributeValue(teamDef, AtsAttributeTypes.BaselineBranchUuid, SAW_Bld_1.getIdString());
// clear versions to config item is from teamDef
for (IAtsVersion version : teamDef.getVersions()) {
changes.deleteArtifact(version.getStoreObject());

Back to the top