Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Joy2016-12-15 16:49:22 +0000
committerDavid W. Miller2016-12-15 16:49:22 +0000
commit8cb773c4f70454ac8c68275b79d5072a6cd1658c (patch)
treea70e6c4a0396f7e723b416212b7550c682dabca2 /plugins/org.eclipse.osee.client.integration.tests
parentc75be63b64fad071c8dd1cf58f54874ce18468bf (diff)
downloadorg.eclipse.osee-8cb773c4f70454ac8c68275b79d5072a6cd1658c.tar.gz
org.eclipse.osee-8cb773c4f70454ac8c68275b79d5072a6cd1658c.tar.xz
org.eclipse.osee-8cb773c4f70454ac8c68275b79d5072a6cd1658c.zip
refactor: Change to use new getId methods in a few cases
Change-Id: Id3b558b0bb80560a2a2382747c906b5799fc4901 Signed-off-by: Mark Joy <mark.joy@boeing.com>
Diffstat (limited to 'plugins/org.eclipse.osee.client.integration.tests')
-rw-r--r--plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/define/FixAttributeOperationTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/define/FixAttributeOperationTest.java b/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/define/FixAttributeOperationTest.java
index 8da76d00b35..78fe0f276ed 100644
--- a/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/define/FixAttributeOperationTest.java
+++ b/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/define/FixAttributeOperationTest.java
@@ -168,7 +168,7 @@ public class FixAttributeOperationTest {
ArtifactQuery.getArtifactFromTypeAndName(CoreArtifactTypes.SoftwareRequirement, "Robot API", branch);
robotAPI.addAttribute(CoreAttributeTypes.Partition, "Navigation");
- itemId = robotAPI.getGuid();
+ itemId = robotAPI.getIdString();
SkynetTransaction transaction = TransactionManager.createTransaction(branch, "Adding Attribute");
transaction.addArtifact(robotAPI);

Back to the top