Skip to content

Commit

Permalink
Fix #12578 pretty print getParameterMap
Browse files Browse the repository at this point in the history
Fix #12578 pretty print getParameterMap
checkstyle
  • Loading branch information
gregw committed Nov 27, 2024
1 parent 6f91098 commit fd5ae58
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ protected void service(HttpServletRequest request, HttpServletResponse resp) thr
HttpTester.Response response = HttpTester.parseResponse(rawResponse);
assertThat(response.getStatus(), is(HttpStatus.OK_200));
assertThat(parameterMap.get(), is("{a=[1, 2, 3],b=[one, two, three],c=[],d=[xyz]}"));
assertThat(response.getContent().replaceAll("\r\n","\n"), is("""
assertThat(response.getContent().replaceAll("\r\n", "\n"), is("""
1
2
3
Expand Down

0 comments on commit fd5ae58

Please sign in to comment.