From 6a9455b7d0e9d8af2f3a3fd9ad832d5b25cb8f5e Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Thu, 21 Jan 2016 17:05:05 -0500 Subject: [PATCH] Fix failing test --- .../test/web/client/match/ContentRequestMatchers.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-test/src/main/java/org/springframework/test/web/client/match/ContentRequestMatchers.java b/spring-test/src/main/java/org/springframework/test/web/client/match/ContentRequestMatchers.java index c88a796aa4..9dbea127ad 100644 --- a/spring-test/src/main/java/org/springframework/test/web/client/match/ContentRequestMatchers.java +++ b/spring-test/src/main/java/org/springframework/test/web/client/match/ContentRequestMatchers.java @@ -149,7 +149,7 @@ public class ContentRequestMatchers { public RequestMatcher formData(final MultiValueMap expectedContent) { return new RequestMatcher() { @Override - public void match(ClientHttpRequest request) throws IOException, AssertionError { + public void match(final ClientHttpRequest request) throws IOException, AssertionError { HttpInputMessage inputMessage = new HttpInputMessage() { @Override public InputStream getBody() throws IOException {