Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pingel2011-07-19 16:04:10 +0000
committerSteffen Pingel2011-07-19 16:46:40 +0000
commitdd8fc900391f15532aae2ba9d5cafa3c6cd06472 (patch)
treef5342f448d8a8333cf16f8c344c71ae6bfd1d83f /org.eclipse.mylyn.trac.tests/src
parent05608ac07c831d37c7c1929924912bc09c49a9c5 (diff)
downloadorg.eclipse.mylyn.tasks-dd8fc900391f15532aae2ba9d5cafa3c6cd06472.tar.gz
org.eclipse.mylyn.tasks-dd8fc900391f15532aae2ba9d5cafa3c6cd06472.tar.xz
org.eclipse.mylyn.tasks-dd8fc900391f15532aae2ba9d5cafa3c6cd06472.zip
REOPENED - bug 351100: fix failing tests for Mylyn 3.7
https://bugs.eclipse.org/bugs/show_bug.cgi?id=351100
Diffstat (limited to 'org.eclipse.mylyn.trac.tests/src')
-rw-r--r--org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java b/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java
index 802b9e6be..7002af240 100644
--- a/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java
+++ b/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/support/TracTestCleanupUtil.java
@@ -57,6 +57,14 @@ public class TracTestCleanupUtil extends TestCase {
deleteOldTickets();
}
+ public void testCleanup012() throws Exception {
+ TracFixture fixture = TracFixture.TRAC_0_12_XML_RPC.activate();
+ System.err.println("Connected to " + fixture.getRepositoryUrl());
+ client = fixture.connect(PrivilegeLevel.ADMIN);
+ deleteOldAttachments();
+ deleteOldTickets();
+ }
+
public void testCleanupTrunk() throws Exception {
TracFixture fixture = TracFixture.TRAC_TRUNK_XML_RPC.activate();
System.err.println("Connected to " + fixture.getRepositoryUrl());

Back to the top