Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2010-01-06 04:24:14 +0000
committerspingel2010-01-06 04:24:14 +0000
commit947cc5933536909a8be46c56a66b657f5b88359f (patch)
tree2af02368ad6291b2ff82b452a93b5dc8461256a9 /org.eclipse.mylyn.bugzilla.tests
parent5f7f7b0aa9ec39ab8ffb776bcd2607a69ca12804 (diff)
downloadorg.eclipse.mylyn.tasks-947cc5933536909a8be46c56a66b657f5b88359f.tar.gz
org.eclipse.mylyn.tasks-947cc5933536909a8be46c56a66b657f5b88359f.tar.xz
org.eclipse.mylyn.tasks-947cc5933536909a8be46c56a66b657f5b88359f.zip
NEW - bug 298918: speed up Bugzilla tests
https://bugs.eclipse.org/bugs/show_bug.cgi?id=298918
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.tests')
-rw-r--r--org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/support/BugzillaFixture.java3
1 files changed, 2 insertions, 1 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 89876ec75..a0070caf1 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
@@ -156,7 +156,8 @@ public class BugzillaFixture extends TestFixture {
BugzillaClientManager bugzillaClientManager = connector.getClientManager();
BugzillaClient client = bugzillaClientManager.getClient(taskRepository, null);
- connector.getRepositoryConfiguration(taskRepository, true, new NullProgressMonitor());
+ connector.getRepositoryConfiguration(taskRepository, false, new NullProgressMonitor());
+ connector.writeRepositoryConfigFile();
return client;
}

Back to the top