Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Becker2012-08-31 20:55:36 +0000
committerFrank Becker2012-08-31 20:55:36 +0000
commit5ce6a16d6b95b87ec399c913d5795219708b87d6 (patch)
treebda62a971f355edf48ed5f01f6ce85b94c8b6363 /org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn
parentcda55fe2c227d1c30adcf206c0bb23878e7cfe41 (diff)
downloadorg.eclipse.mylyn.tasks-5ce6a16d6b95b87ec399c913d5795219708b87d6.tar.gz
org.eclipse.mylyn.tasks-5ce6a16d6b95b87ec399c913d5795219708b87d6.tar.xz
org.eclipse.mylyn.tasks-5ce6a16d6b95b87ec399c913d5795219708b87d6.zip
ASSIGNED - bug 388569: upgrade test servers to Bugzilla 4.2.3, 4.0.8,
and 3.6.11 https://bugs.eclipse.org/bugs/show_bug.cgi?id=388569
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn')
-rw-r--r--org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/support/BugzillaFixture.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/support/BugzillaFixture.java b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/support/BugzillaFixture.java
index 168c7a9aa..6083cb62e 100644
--- a/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/support/BugzillaFixture.java
+++ b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/support/BugzillaFixture.java
@@ -80,30 +80,30 @@ public class BugzillaFixture extends TestFixture {
"3.4.14", "");
public static BugzillaFixture BUGS_3_6 = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_36_URL, //
- "3.6.10", "");
+ "3.6.11", "");
public static BugzillaFixture BUGS_3_6_CUSTOM_WF = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_36_URL
- + "-custom-wf", "3.6.10", CUSTOM_WF);
+ + "-custom-wf", "3.6.11", CUSTOM_WF);
public static BugzillaFixture BUGS_3_6_CUSTOM_WF_AND_STATUS = new BugzillaFixture(
- BugzillaFixture.TEST_BUGZILLA_36_URL + "-custom-wf-and-status", "3.6.10", CUSTOM_WF_AND_STATUS);
+ BugzillaFixture.TEST_BUGZILLA_36_URL + "-custom-wf-and-status", "3.6.11", CUSTOM_WF_AND_STATUS);
public static BugzillaFixture BUGS_3_6_XML_RPC_DISABLED = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_36_URL
- + "-xml-rpc-disabled", "3.6.10", XML_RPC_DISABLED);
+ + "-xml-rpc-disabled", "3.6.11", XML_RPC_DISABLED);
public static BugzillaFixture BUGS_4_0 = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_40_URL, //
- "4.0.7", "");
+ "4.0.8", "");
public static BugzillaFixture BUGS_4_2 = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_42_URL, //
- "4.2.2", "");
+ "4.2.3", "");
public static BugzillaFixture BUGS_HEAD = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_HEAD_URL, //
- "4.3.2+", "");
+ "4.5", "");
public static BugzillaFixture DEFAULT = BUGS_4_2;
public static final BugzillaFixture[] ALL = new BugzillaFixture[] { BUGS_3_4, BUGS_3_6, BUGS_3_6_XML_RPC_DISABLED,
- BUGS_3_6_CUSTOM_WF, BUGS_3_6_CUSTOM_WF_AND_STATUS, BUGS_4_0, BUGS_4_2, BUGS_HEAD };
+ BUGS_3_6_CUSTOM_WF, BUGS_3_6_CUSTOM_WF_AND_STATUS, BUGS_4_0, BUGS_4_2 /*, BUGS_HEAD*/};
private final String version;

Back to the top