HDDS-810. Move the "\r\n" at the chunk end in TestSignedChunksInputStream#singlechunkwithoutend.

Contributed by Chencan.
This commit is contained in:
Anu Engineer 2018-11-06 07:59:40 -08:00
parent f0ce072934
commit 00a67f770e
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public void singlechunkwithoutend() throws IOException {
InputStream is = fileContent("0A;chunk-signature"
+
"=23abb2bd920ddeeaac78a63ed808bc59fa6e7d3ef0e356474b82cdc2f8c93c40\r"
+ "\n1234567890\r\n");
+ "\n1234567890");
String result = IOUtils.toString(is, Charset.forName("UTF-8"));
Assert.assertEquals("1234567890", result);
}