Fix line length

This commit is contained in:
Ryan Ernst 2017-02-02 20:52:46 -08:00
parent 91cd6f35ce
commit b2f9f746bb
1 changed files with 2 additions and 1 deletions

View File

@ -54,7 +54,8 @@ public class DetailedErrorsDisabledIT extends HttpSmokeTestCase {
Response response = e.getResponse();
assertThat(response.getHeader("Content-Type"), is("application/json; charset=UTF-8"));
assertThat(EntityUtils.toString(e.getResponse().getEntity()), containsString("\"error\":\"error traces in responses are disabled.\""));
assertThat(EntityUtils.toString(e.getResponse().getEntity()),
containsString("\"error\":\"error traces in responses are disabled.\""));
assertThat(response.getStatusLine().getStatusCode(), is(400));
}
}