Browse Source

Merge branch '5.3.x'

pull/27933/head
Stephane Nicoll 3 years ago
parent
commit
d6e56ce327
  1. 4
      spring-test/src/test/java/org/springframework/test/web/servlet/samples/standalone/resulthandlers/PrintingResultHandlerIntegrationTests.java

4
spring-test/src/test/java/org/springframework/test/web/servlet/samples/standalone/resulthandlers/PrintingResultHandlerIntegrationTests.java

@ -68,10 +68,10 @@ class PrintingResultHandlerIntegrationTests { @@ -68,10 +68,10 @@ class PrintingResultHandlerIntegrationTests {
standaloneSetup(new SimpleController()).build()
// "Hallöchen" is German slang for "hello".
.perform(get("/utf8").accept(MediaType.APPLICATION_JSON).content("Hallöchen, Welt!".getBytes()).characterEncoding(UTF_8))
.perform(get("/utf8").accept(MediaType.APPLICATION_JSON).content("Hallöchen, Welt!".getBytes(UTF_8)).characterEncoding(UTF_8))
.andDo(print(writer))
// "Grüß dich!" is German for "greetings to you".
.andExpect(content().bytes("Grüß dich!".getBytes()));
.andExpect(content().bytes("Grüß dich!".getBytes(UTF_8)));
assertThat(writer).asString()
.contains("Body = Hallöchen, Welt!")

Loading…
Cancel
Save