Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pingel2012-01-17 18:43:37 +0000
committerSteffen Pingel2012-01-17 18:44:43 +0000
commit0edb11b0e15636413f17b8e127a801f4fe8e20e8 (patch)
tree44f30735c801a279cbb916025e86717e5012d5d7 /org.eclipse.mylyn.bugzilla.tests
parente2fd4474dc680d6112fb10776baa1a8cd63ff70a (diff)
downloadorg.eclipse.mylyn.tasks-0edb11b0e15636413f17b8e127a801f4fe8e20e8.tar.gz
org.eclipse.mylyn.tasks-0edb11b0e15636413f17b8e127a801f4fe8e20e8.tar.xz
org.eclipse.mylyn.tasks-0edb11b0e15636413f17b8e127a801f4fe8e20e8.zip
Revert "ASSIGNED - bug 367861: fields marked as incoming on Eclipse.org that had no changes https://bugs.eclipse.org/bugs/show_bug.cgi?id=367861"
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.tests')
-rw-r--r--org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java
index c0e873687..5201c75b5 100644
--- a/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java
+++ b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java
@@ -497,18 +497,4 @@ public class BugzillaRepositoryConnectorStandaloneTest extends TestCase {
assertEquals(PriorityLevel.P3, mapping.getPriorityLevel());
}
}
-
- public void testEmptyTags() throws Exception {
- TaskData taskDataNew = BugzillaFixture.current().getTask("1", client);
- List<String> list = taskDataNew.getRoot().getAttribute(BugzillaAttribute.RESOLUTION.getKey()).getValues();
- assertEquals(0, list.size());
- assertEquals("", taskDataNew.getRoot().getAttribute(BugzillaAttribute.RESOLUTION.getKey()).getValue());
- assertEquals("", taskDataNew.getRoot().getAttribute(BugzillaAttribute.BUG_FILE_LOC.getKey()).getValue());
- list = taskDataNew.getRoot().getAttribute(BugzillaAttribute.KEYWORDS.getKey()).getValues();
- assertEquals(0, list.size());
- assertEquals("", taskDataNew.getRoot().getAttribute(BugzillaAttribute.KEYWORDS.getKey()).getValue());
- list = taskDataNew.getRoot().getAttribute(BugzillaAttribute.STATUS_WHITEBOARD.getKey()).getValues();
- assertEquals(0, list.size());
- assertEquals("", taskDataNew.getRoot().getAttribute(BugzillaAttribute.STATUS_WHITEBOARD.getKey()).getValue());
- }
} \ No newline at end of file

Back to the top