summaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/src
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@yahoo-inc.com>2017-01-23 16:53:47 +0100
committerBjørn Christian Seime <bjorncs@yahoo-inc.com>2017-01-24 12:42:37 +0100
commite8c1d18055235c312c13d6fd135c55b513990c8f (patch)
tree1c4da83c6bfbd660dea4e6dab54e24c30daa17f4 /vespaclient-container-plugin/src
parent613a34bcdbcec0fce51866053ca7a7f18d12421b (diff)
Use Jetty 9.3.16
Diffstat (limited to 'vespaclient-container-plugin/src')
-rw-r--r--vespaclient-container-plugin/src/test/java/com/yahoo/document/restapi/resource/RestApiTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespaclient-container-plugin/src/test/java/com/yahoo/document/restapi/resource/RestApiTest.java b/vespaclient-container-plugin/src/test/java/com/yahoo/document/restapi/resource/RestApiTest.java
index 95a48ab41fe..f098e00ec6d 100644
--- a/vespaclient-container-plugin/src/test/java/com/yahoo/document/restapi/resource/RestApiTest.java
+++ b/vespaclient-container-plugin/src/test/java/com/yahoo/document/restapi/resource/RestApiTest.java
@@ -286,7 +286,7 @@ public class RestApiTest {
private String doRest(HttpRequestBase request) throws IOException {
HttpClient client = HttpClientBuilder.create().build();
HttpResponse response = client.execute(request);
- assertThat(response.getEntity().getContentType().getValue().toString(), is("application/json; charset=UTF-8"));
+ assertThat(response.getEntity().getContentType().getValue().toString(), is("application/json;charset=utf-8"));
HttpEntity entity = response.getEntity();
return EntityUtils.toString(entity);
}