Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorddunne2009-05-20 20:19:09 +0000
committerddunne2009-05-20 20:19:09 +0000
commit0bba152585a3c0d7bacfb943f48eed98a6a1b7ec (patch)
treefbb27c41a8d3ce62c14ebf391b9764c5f2ef24aa
parent0dab723b4a4e194064f235497232fe09403e7634 (diff)
downloadorg.eclipse.osee-0bba152585a3c0d7bacfb943f48eed98a6a1b7ec.tar.gz
org.eclipse.osee-0bba152585a3c0d7bacfb943f48eed98a6a1b7ec.tar.xz
org.eclipse.osee-0bba152585a3c0d7bacfb943f48eed98a6a1b7ec.zip
-rw-r--r--org.eclipse.osee.framework.ui.skynet.test/src/org/eclipse/osee/framework/ui/skynet/test/nonproduction/InterArtifactDropTest.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/org.eclipse.osee.framework.ui.skynet.test/src/org/eclipse/osee/framework/ui/skynet/test/nonproduction/InterArtifactDropTest.java b/org.eclipse.osee.framework.ui.skynet.test/src/org/eclipse/osee/framework/ui/skynet/test/nonproduction/InterArtifactDropTest.java
index f476718658d..6f02e47df28 100644
--- a/org.eclipse.osee.framework.ui.skynet.test/src/org/eclipse/osee/framework/ui/skynet/test/nonproduction/InterArtifactDropTest.java
+++ b/org.eclipse.osee.framework.ui.skynet.test/src/org/eclipse/osee/framework/ui/skynet/test/nonproduction/InterArtifactDropTest.java
@@ -39,13 +39,18 @@ public class InterArtifactDropTest extends TestCase {
private static final String SOURCE_BRANCH = "Source Branch";
private static final String DESTINATION_BRANCH = "Destination Branch";
+ @Override
protected void tearDown() throws Exception {
super.tearDown();
BranchManager.deleteBranch(BranchManager.getBranch(DESTINATION_BRANCH));
+ sleep(5000);
+
BranchManager.deleteBranch(BranchManager.getBranch(SOURCE_BRANCH));
+ sleep(5000);
}
+ @Override
protected void setUp() throws Exception {
assertFalse("This test can not be run on Production", ClientSessionManager.isProductionDataStore());
@@ -61,7 +66,7 @@ public class InterArtifactDropTest extends TestCase {
BranchManager.createWorkingBranch(BranchManager.getSystemRootBranch(), DESTINATION_BRANCH,
UserManager.getUser(SystemUser.OseeSystem));
-
+
sleep(5000);
}

Back to the top