Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan D. Brooks2016-08-08 22:03:20 +0000
committerdonald.g.dunne2016-08-08 22:03:20 +0000
commit18fcb2cf1ceb0fa144c38182e432e25482af4bf6 (patch)
treef045e9e2c4f1479b8976028601af3627e3697159 /plugins/org.eclipse.osee.client.integration.tests
parent35dda22ff4c8ffd41bbc8718e6a1647f1df63abe (diff)
downloadorg.eclipse.osee-18fcb2cf1ceb0fa144c38182e432e25482af4bf6.tar.gz
org.eclipse.osee-18fcb2cf1ceb0fa144c38182e432e25482af4bf6.tar.xz
org.eclipse.osee-18fcb2cf1ceb0fa144c38182e432e25482af4bf6.zip
refactor: Remove CoreBranches.COMMON_ID
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/skynet/core/ArtifactEventTest.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/ArtifactEventTest.java b/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/ArtifactEventTest.java
index 83b00c089f0..c853b6dd29c 100644
--- a/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/ArtifactEventTest.java
+++ b/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/ArtifactEventTest.java
@@ -12,7 +12,6 @@ package org.eclipse.osee.client.integration.tests.integration.skynet.core;
import static org.eclipse.osee.client.demo.DemoChoice.OSEE_CLIENT_DEMO;
import static org.eclipse.osee.framework.core.enums.CoreBranches.COMMON;
-import static org.eclipse.osee.framework.core.enums.CoreBranches.COMMON_ID;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
@@ -623,7 +622,7 @@ public class ArtifactEventTest {
Assert.assertEquals(RelationOrderModType.Absolute, guidReorder.getModType());
Assert.assertEquals(parentRemGuidArt.getArtGuid(), guidReorder.getParentArt().getGuid());
Assert.assertEquals(parentRemGuidArt.getArtTypeGuid(), (long) guidReorder.getParentArt().getArtTypeGuid());
- Assert.assertTrue(guidReorder.getParentArt().isOnBranch(COMMON_ID));
+ Assert.assertTrue(guidReorder.getParentArt().isOnBranch(COMMON));
Assert.assertEquals(CoreRelationTypes.Default_Hierarchical__Child.getGuid(), guidReorder.getRelTypeGuid());
Assert.assertTrue(injectArt.isOnSameBranch(guidReorder));

Back to the top