* Correcting System LN issue.

* Fixing test name typo.


git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@546 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Joakim Erdfelt 2009-07-10 23:04:02 +00:00
parent b8296674ff
commit 90105841ab
1 changed files with 2 additions and 2 deletions

View File

@ -52,11 +52,11 @@ public class HttpResponseTesterTest extends AbstractJettyTestCase
assertEquals("Response[Content-Length]",28,response.getLongHeader("Content-Length"));
assertEquals("Response[Connection]","close",response.getHeader("Connection"));
assertEquals("Response.content","ABCDEFGHIJKLMNOPQRSTTUVWXYZ\n",response.getContent().toString());
assertEquals("Response.content",toSystemLN("ABCDEFGHIJKLMNOPQRSTTUVWXYZ\n"),response.getContent().toString());
}
@Test
public void testMultHttp11Response() throws IOException
public void testMultiHttp11Response() throws IOException
{
StringBuffer rawResponse = new StringBuffer();
rawResponse.append("HTTP/1.1 200 OK\n");