Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto E. Escobar2013-09-25 18:00:01 +0000
committerRoberto E. Escobar2013-09-25 18:00:32 +0000
commitb0e6a428006fdf34e9100f79c5a7f156e04eeeb1 (patch)
tree5284129e1bec89d19ae43e04f7395a559a178153 /plugins/org.eclipse.osee.coverage.help.ui.test
parentbb8fd87b319d240edc869975261e5b2a63da170e (diff)
downloadorg.eclipse.osee-b0e6a428006fdf34e9100f79c5a7f156e04eeeb1.tar.gz
org.eclipse.osee-b0e6a428006fdf34e9100f79c5a7f156e04eeeb1.tar.xz
org.eclipse.osee-b0e6a428006fdf34e9100f79c5a7f156e04eeeb1.zip
refactor: Improve help.ui.test dependencies
Diffstat (limited to 'plugins/org.eclipse.osee.coverage.help.ui.test')
-rw-r--r--plugins/org.eclipse.osee.coverage.help.ui.test/META-INF/MANIFEST.MF6
-rw-r--r--plugins/org.eclipse.osee.coverage.help.ui.test/src/org/eclipse/osee/coverage/help/ui/HelpContextTest.java2
-rw-r--r--plugins/org.eclipse.osee.coverage.help.ui.test/src/org/eclipse/osee/coverage/help/ui/util/HelpTestUtil.java2
3 files changed, 5 insertions, 5 deletions
diff --git a/plugins/org.eclipse.osee.coverage.help.ui.test/META-INF/MANIFEST.MF b/plugins/org.eclipse.osee.coverage.help.ui.test/META-INF/MANIFEST.MF
index 962705fadb8..d595dde54a6 100644
--- a/plugins/org.eclipse.osee.coverage.help.ui.test/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.osee.coverage.help.ui.test/META-INF/MANIFEST.MF
@@ -6,7 +6,7 @@ Bundle-Version: 0.14.0.qualifier
Bundle-Vendor: Eclipse Open System Engineering Environment
Fragment-Host: org.eclipse.osee.coverage.help.ui
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
-Require-Bundle: org.junit
-Import-Package: org.eclipse.core.runtime,
- org.eclipse.osee.framework.jdk.core.util,
+Require-Bundle: org.junit,
+ org.eclipse.core.runtime
+Import-Package: org.eclipse.osee.framework.jdk.core.util,
org.osgi.framework
diff --git a/plugins/org.eclipse.osee.coverage.help.ui.test/src/org/eclipse/osee/coverage/help/ui/HelpContextTest.java b/plugins/org.eclipse.osee.coverage.help.ui.test/src/org/eclipse/osee/coverage/help/ui/HelpContextTest.java
index 1cfe692e5f9..587abfb9eb5 100644
--- a/plugins/org.eclipse.osee.coverage.help.ui.test/src/org/eclipse/osee/coverage/help/ui/HelpContextTest.java
+++ b/plugins/org.eclipse.osee.coverage.help.ui.test/src/org/eclipse/osee/coverage/help/ui/HelpContextTest.java
@@ -19,8 +19,8 @@ import java.util.Map;
import org.eclipse.osee.coverage.help.ui.util.ContextParser;
import org.eclipse.osee.coverage.help.ui.util.ContextParser.ContextEntry;
import org.eclipse.osee.coverage.help.ui.util.HelpTestUtil;
+import org.eclipse.osee.framework.core.data.HelpContext;
import org.eclipse.osee.framework.jdk.core.util.Compare;
-import org.eclipse.osee.framework.ui.plugin.util.HelpContext;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
diff --git a/plugins/org.eclipse.osee.coverage.help.ui.test/src/org/eclipse/osee/coverage/help/ui/util/HelpTestUtil.java b/plugins/org.eclipse.osee.coverage.help.ui.test/src/org/eclipse/osee/coverage/help/ui/util/HelpTestUtil.java
index f5c88e52a9d..01121935360 100644
--- a/plugins/org.eclipse.osee.coverage.help.ui.test/src/org/eclipse/osee/coverage/help/ui/util/HelpTestUtil.java
+++ b/plugins/org.eclipse.osee.coverage.help.ui.test/src/org/eclipse/osee/coverage/help/ui/util/HelpTestUtil.java
@@ -10,7 +10,7 @@
*******************************************************************************/
package org.eclipse.osee.coverage.help.ui.util;
-import static junit.framework.Assert.assertEquals;
+import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import java.io.File;
import java.net.URL;

Back to the top