Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pingel2013-04-10 22:25:38 +0000
committerSteffen Pingel2013-04-10 22:41:12 +0000
commit98cbe01c925cf613832919c62d633f6027264fb5 (patch)
treea9bffa026418a58c19ebf6c46fe1fe519141c9d2 /org.eclipse.mylyn.bugzilla.tests/src
parent6607269b6d3b35aae93bb30236c7cdbdb5996e6d (diff)
downloadorg.eclipse.mylyn.tasks-98cbe01c925cf613832919c62d633f6027264fb5.tar.gz
org.eclipse.mylyn.tasks-98cbe01c925cf613832919c62d633f6027264fb5.tar.xz
org.eclipse.mylyn.tasks-98cbe01c925cf613832919c62d633f6027264fb5.zip
400396: use default configuration when obtaining fixtures
Change-Id: I1faa2f41ffc4c23cdf48709aeda705afa33b16fb Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=400396
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.tests/src')
-rw-r--r--org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/support/BugzillaFixture.java3
1 files changed, 1 insertions, 2 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 098180e6b..6d85d9185 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
@@ -357,8 +357,7 @@ public class BugzillaFixture extends TestFixture {
}
static {
- List<BugzillaFixture> fixtureList = TestConfiguration.discover(BugzillaFixture.getServerUrl(),
- BugzillaFixture.class, "bugzilla");
+ List<BugzillaFixture> fixtureList = TestConfiguration.getDefault().discover(BugzillaFixture.class, "bugzilla");
DEFAULT = getDefaultFixture(fixtureList);
ALL = getAll(fixtureList);
}

Back to the top