Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Becker2012-08-10 20:47:32 +0000
committerFrank Becker2012-08-10 20:47:32 +0000
commitcda55fe2c227d1c30adcf206c0bb23878e7cfe41 (patch)
treeaa3578e399eb5914d2630c60eead7baeb36d462d /org.eclipse.mylyn.bugzilla.tests/src
parent1d3666f7377c3f29438ab564eec4f0c27690d56b (diff)
downloadorg.eclipse.mylyn.tasks-cda55fe2c227d1c30adcf206c0bb23878e7cfe41.tar.gz
org.eclipse.mylyn.tasks-cda55fe2c227d1c30adcf206c0bb23878e7cfe41.tar.xz
org.eclipse.mylyn.tasks-cda55fe2c227d1c30adcf206c0bb23878e7cfe41.zip
REOPENED - bug 386143: upgrade test servers to Bugzilla 4.2.2, 4.0.7,
and 3.6.10 https://bugs.eclipse.org/bugs/show_bug.cgi?id=386143
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.java2
1 files changed, 1 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 63ebb8938..168c7a9aa 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
@@ -201,7 +201,7 @@ public class BugzillaFixture extends TestFixture {
if (i == -1) {
throw new IllegalArgumentException(NLS.bind("Unable to determine repository name for {0}", url));
}
- return url.substring(i);
+ return url.substring(i + 1);
}
public BugzillaClient client(PrivilegeLevel level) throws Exception {

Back to the top