default handler is now HTML5 compliant so default character encoding is now UTF-8

Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
This commit is contained in:
olivier lamy 2019-04-23 12:59:47 +10:00
parent 6395e7f25a
commit 8bacb603a7
1 changed files with 2 additions and 2 deletions

View File

@ -89,9 +89,9 @@ public class DefaultHandlerTest
HttpTester.Response response = HttpTester.parseResponse(input);
assertEquals(HttpStatus.NOT_FOUND_404, response.getStatus());
assertEquals("text/html;charset=ISO-8859-1", response.get(HttpHeader.CONTENT_TYPE));
assertEquals("text/html;charset=UTF-8", response.get(HttpHeader.CONTENT_TYPE));
String content = new String(response.getContentBytes(),StandardCharsets.ISO_8859_1);
String content = new String(response.getContentBytes(),StandardCharsets.UTF_8);
assertThat(content,containsString("Contexts known to this server are:"));
assertThat(content,containsString("/foo"));
assertThat(content,containsString("/bar"));