Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Becker2012-12-05 20:45:39 +0000
committerGerrit Code Review @ Eclipse.org2012-12-08 22:03:45 +0000
commit89e7ddec5c089f5d244d09efcb27e243915698b3 (patch)
treefc9fcf86dd8a5250381398920d41bfe386e9bf5e /org.eclipse.mylyn.bugzilla.tests
parent6a15b70c52501a22235d8cec9e910806af5c8fda (diff)
downloadorg.eclipse.mylyn.tasks-89e7ddec5c089f5d244d09efcb27e243915698b3.tar.gz
org.eclipse.mylyn.tasks-89e7ddec5c089f5d244d09efcb27e243915698b3.tar.xz
org.eclipse.mylyn.tasks-89e7ddec5c089f5d244d09efcb27e243915698b3.zip
234445: Change SaxConfigurationContentHandler to fix
testRDFProductConfig for Bugzilla > 4.4 Change-Id: I457daaa0dcb9f9543ca1d3cc80cb1e2a911817f8 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=234445
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.tests')
-rw-r--r--org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaClientTest.java5
-rw-r--r--org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/support/BugzillaFixture.java2
2 files changed, 1 insertions, 6 deletions
diff --git a/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaClientTest.java b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaClientTest.java
index 770fc12c4..98574cc39 100644
--- a/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaClientTest.java
+++ b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaClientTest.java
@@ -62,11 +62,6 @@ public class BugzillaClientTest extends TestCase {
}
public void testRDFProductConfig() throws Exception {
- if (BugzillaFixture.current() == BugzillaFixture.BUGS_4_4
- || BugzillaFixture.current() == BugzillaFixture.BUGS_HEAD) {
- // FIXME: need fix of bug#372600
- return;
- }
RepositoryConfiguration config = client.getRepositoryConfiguration();
assertNotNull(config);
assertEquals(
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 81bee8941..7df14261b 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
@@ -100,7 +100,7 @@ public class BugzillaFixture extends TestFixture {
"4.2", "");
public static BugzillaFixture BUGS_4_4 = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_44_URL, //
- "4.3", "");
+ "4.4", "");
public static BugzillaFixture BUGS_HEAD = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_HEAD_URL, //
"4.5", "");

Back to the top