Skip to content

Commit 520a35a

Browse files
undo
1 parent bd7eb42 commit 520a35a

File tree

1 file changed

+1
-1
lines changed
  • spring-test/src/test/java/org/springframework/test/web/client/samples

1 file changed

+1
-1
lines changed

Diff for: spring-test/src/test/java/org/springframework/test/web/client/samples/SampleTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public void performGetWithResponseBodyFromFile() {
138138
Resource responseBody = new ClassPathResource("ludwig.json", this.getClass());
139139

140140
this.mockServer.expect(requestTo("/composers/42")).andExpect(method(HttpMethod.GET))
141-
.andRespond(withSuccess(responseBody, MediaType.APPLICATION_JSON));
141+
.andRespond(withSuccess(responseBody, MediaType.APPLICATION_JSON));
142142

143143
this.restTemplate.getForObject("/composers/{id}", Person.class, 42);
144144

0 commit comments

Comments
 (0)