We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd7eb42 commit 520a35aCopy full SHA for 520a35a
spring-test/src/test/java/org/springframework/test/web/client/samples/SampleTests.java
@@ -138,7 +138,7 @@ public void performGetWithResponseBodyFromFile() {
138
Resource responseBody = new ClassPathResource("ludwig.json", this.getClass());
139
140
this.mockServer.expect(requestTo("/composers/42")).andExpect(method(HttpMethod.GET))
141
- .andRespond(withSuccess(responseBody, MediaType.APPLICATION_JSON));
+ .andRespond(withSuccess(responseBody, MediaType.APPLICATION_JSON));
142
143
this.restTemplate.getForObject("/composers/{id}", Person.class, 42);
144
0 commit comments