summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.test/exttst
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@gmail.com>2018-03-06 13:34:31 +0900
committerDavid Pursehouse <david.pursehouse@gmail.com>2018-03-06 16:56:13 +0900
commit8d845ec549e60799ca95bf5963b88b81078c70b8 (patch)
tree3deb0a5dd4efc2e94d6c77a07d04f21296ef9bba /org.eclipse.jgit.test/exttst
parentda63121b0db30cfe569bf5b7138356bebccd253b (diff)
downloadjgit-8d845ec549e60799ca95bf5963b88b81078c70b8.tar.gz
jgit-8d845ec549e60799ca95bf5963b88b81078c70b8.zip
EGitPatchHistoryTest: Set input stream encoding with constant
Change-Id: Ieff9b1d07704e37c8d5616b220b015855a7cc624 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
Diffstat (limited to 'org.eclipse.jgit.test/exttst')
-rw-r--r--org.eclipse.jgit.test/exttst/org/eclipse/jgit/patch/EGitPatchHistoryTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit.test/exttst/org/eclipse/jgit/patch/EGitPatchHistoryTest.java b/org.eclipse.jgit.test/exttst/org/eclipse/jgit/patch/EGitPatchHistoryTest.java
index 586505cfe8..da997f98a1 100644
--- a/org.eclipse.jgit.test/exttst/org/eclipse/jgit/patch/EGitPatchHistoryTest.java
+++ b/org.eclipse.jgit.test/exttst/org/eclipse/jgit/patch/EGitPatchHistoryTest.java
@@ -203,7 +203,7 @@ public class EGitPatchHistoryTest {
void read() throws IOException, InterruptedException {
final BufferedReader in = new BufferedReader(new InputStreamReader(
- proc.getInputStream(), "ISO-8859-1"));
+ proc.getInputStream(), ISO_8859_1));
String commitId = null;
TemporaryBuffer buf = null;
for (;;) {