Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2010-06-08 05:19:48 +0000
committerspingel2010-06-08 05:19:48 +0000
commitdb0f97c1a13d7ddbb9608298dd819d22852d9ddc (patch)
treef2f0c7d9816b8ff8de0dffe65153e1770b6c2114 /org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/TaskTestUtil.java
parent3f30772612598171a3b5a0dd15f4bd6bdccbcdaf (diff)
downloadorg.eclipse.mylyn.tasks-db0f97c1a13d7ddbb9608298dd819d22852d9ddc.tar.gz
org.eclipse.mylyn.tasks-db0f97c1a13d7ddbb9608298dd819d22852d9ddc.tar.xz
org.eclipse.mylyn.tasks-db0f97c1a13d7ddbb9608298dd819d22852d9ddc.zip
RESOLVED - bug 296894: [releng] fix failing tests for 3.4
https://bugs.eclipse.org/bugs/show_bug.cgi?id=296894
Diffstat (limited to 'org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/TaskTestUtil.java')
-rw-r--r--org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/TaskTestUtil.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/TaskTestUtil.java b/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/TaskTestUtil.java
index 270dc22a8..def5ee7a6 100644
--- a/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/TaskTestUtil.java
+++ b/org.eclipse.mylyn.tasks.tests/src/org/eclipse/mylyn/tasks/tests/TaskTestUtil.java
@@ -88,15 +88,15 @@ public class TaskTestUtil {
}
public static TaskRepository createMockRepository() {
- return new TaskRepository(MockRepositoryConnector.REPOSITORY_KIND, MockRepositoryConnector.REPOSITORY_URL);
+ return new TaskRepository(MockRepositoryConnector.CONNECTOR_KIND, MockRepositoryConnector.REPOSITORY_URL);
}
public static TaskTask createMockTask(String taskId) {
- return new TaskTask(MockRepositoryConnector.REPOSITORY_KIND, MockRepositoryConnector.REPOSITORY_URL, taskId);
+ return new TaskTask(MockRepositoryConnector.CONNECTOR_KIND, MockRepositoryConnector.REPOSITORY_URL, taskId);
}
public static RepositoryQuery createMockQuery(String queryId) {
- return new RepositoryQuery(MockRepositoryConnector.REPOSITORY_KIND, queryId);
+ return new RepositoryQuery(MockRepositoryConnector.CONNECTOR_KIND, queryId);
}
public static TaskListView openTasksViewInActivePerspective() throws Exception {

Back to the top