Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2009-09-01 04:13:58 +0000
committerspingel2009-09-01 04:13:58 +0000
commitbdf62b13fce88a371eb1079e96eabf5a7d6e0614 (patch)
tree5d1f3036c2c3f3ac544b97dc5b044187bd733a76 /org.eclipse.mylyn.sandbox.tests/src
parent2878bfc366aaa24cd2abf5b0511f39b5032ac4a9 (diff)
downloadorg.eclipse.mylyn.incubator-bdf62b13fce88a371eb1079e96eabf5a7d6e0614.tar.gz
org.eclipse.mylyn.incubator-bdf62b13fce88a371eb1079e96eabf5a7d6e0614.tar.xz
org.eclipse.mylyn.incubator-bdf62b13fce88a371eb1079e96eabf5a7d6e0614.zip
NEW - bug 287225: implement test suite driver for multiple repositories
https://bugs.eclipse.org/bugs/show_bug.cgi?id=287225
Diffstat (limited to 'org.eclipse.mylyn.sandbox.tests/src')
-rw-r--r--org.eclipse.mylyn.sandbox.tests/src/org/eclipse/mylyn/sandbox/tests/TaskReportGeneratorTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.sandbox.tests/src/org/eclipse/mylyn/sandbox/tests/TaskReportGeneratorTest.java b/org.eclipse.mylyn.sandbox.tests/src/org/eclipse/mylyn/sandbox/tests/TaskReportGeneratorTest.java
index 51e69fa8..440a83fd 100644
--- a/org.eclipse.mylyn.sandbox.tests/src/org/eclipse/mylyn/sandbox/tests/TaskReportGeneratorTest.java
+++ b/org.eclipse.mylyn.sandbox.tests/src/org/eclipse/mylyn/sandbox/tests/TaskReportGeneratorTest.java
@@ -20,8 +20,8 @@ import java.util.Set;
import junit.framework.TestCase;
import org.eclipse.core.runtime.NullProgressMonitor;
+import org.eclipse.mylyn.bugzilla.tests.BugzillaTestConstants;
import org.eclipse.mylyn.internal.bugzilla.core.BugzillaCorePlugin;
-import org.eclipse.mylyn.internal.bugzilla.core.IBugzillaConstants;
import org.eclipse.mylyn.internal.sandbox.ui.planner.CompletedTaskCollector;
import org.eclipse.mylyn.internal.sandbox.ui.planner.TaskReportGenerator;
import org.eclipse.mylyn.internal.tasks.core.AbstractTask;
@@ -95,9 +95,9 @@ public class TaskReportGeneratorTest extends TestCase {
public void testCompletedBugzillaTasksRetrieved() throws InvocationTargetException, InterruptedException {
TaskRepository repository = new TaskRepository(BugzillaCorePlugin.CONNECTOR_KIND,
- IBugzillaConstants.ECLIPSE_BUGZILLA_URL);
+ BugzillaTestConstants.TEST_BUGZILLA_LATEST_URL);
TasksUiPlugin.getRepositoryManager().addRepository(repository);
- TaskTask task1 = new TaskTask(IBugzillaConstants.ECLIPSE_BUGZILLA_URL, "1", "bugzillatask 1");
+ TaskTask task1 = new TaskTask(BugzillaTestConstants.TEST_BUGZILLA_LATEST_URL, "1", "bugzillatask 1");
taskList.addTask(task1);
Calendar cal = Calendar.getInstance();

Back to the top