Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelves2010-02-16 05:51:49 +0000
committerrelves2010-02-16 05:51:49 +0000
commitf6d413795d0614074ffec64674145943f378c4c6 (patch)
tree4b5746958632265a2139bb4e7e08a2538647b162 /org.eclipse.mylyn.bugzilla.core
parentf251a8adb283b314132b6c91519e14076db19fc5 (diff)
downloadorg.eclipse.mylyn.tasks-f6d413795d0614074ffec64674145943f378c4c6.tar.gz
org.eclipse.mylyn.tasks-f6d413795d0614074ffec64674145943f378c4c6.tar.xz
org.eclipse.mylyn.tasks-f6d413795d0614074ffec64674145943f378c4c6.zip
290465: fix Bugzilla test suite
https://bugs.eclipse.org/bugs/show_bug.cgi?id=290465
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.core')
-rw-r--r--org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java
index c1678b7cc..92e29d17c 100644
--- a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java
+++ b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java
@@ -954,7 +954,7 @@ public class BugzillaClient {
BufferedReader in = new BufferedReader(new InputStreamReader(input, method.getRequestCharSet()));
if (in.markSupported()) {
- in.mark(1028);
+ in.mark(1);
}
HtmlStreamTokenizer tokenizer = new HtmlStreamTokenizer(in, null);
@@ -1721,7 +1721,7 @@ public class BugzillaClient {
}
RepositoryStatus status = RepositoryStatus.createHtmlStatus(repositoryUrl.toString(), IStatus.INFO,
- BugzillaCorePlugin.ID_PLUGIN, RepositoryStatus.ERROR_REPOSITORY, UNKNOWN_REPOSITORY_ERROR + body,
+ BugzillaCorePlugin.ID_PLUGIN, RepositoryStatus.ERROR_REPOSITORY, UNKNOWN_REPOSITORY_ERROR + result,
body);
throw new CoreException(status);

Back to the top