Forgot to set CRLF explicitly for second test.

This commit is contained in:
Tina Schrepfer (LI) 2017-03-15 09:11:19 -07:00
Родитель 12cf5dbd0a
Коммит ee02fe35d3
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -37,9 +37,9 @@ CRLF +
this.receivingStream.SetLength(0);
content =
@"Content-Length:5
ABCDE";
"Content-Length:5" + CRLF +
CRLF +
"ABCDE";
bytes = Encoding.UTF8.GetBytes(content);
this.receivingStream.Write(bytes, 0, bytes.Length);
this.receivingStream.Flush();