Browse Source

Address outstanding formatting issues (#897)

pull/900/head
Kevin Davis 6 years ago committed by GitHub
parent
commit
478f4ec92e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      core/src/test/java/feign/FeignTest.java

3
core/src/test/java/feign/FeignTest.java

@ -540,7 +540,8 @@ public class FeignTest { @@ -540,7 +540,8 @@ public class FeignTest {
.errorDecoder(new ErrorDecoder() {
@Override
public Exception decode(String methodKey, Response response) {
return new RetryableException(response.status(), "play it again sam!", HttpMethod.POST, null);
return new RetryableException(response.status(), "play it again sam!", HttpMethod.POST,
null);
}
}).target(TestInterface.class, "http://localhost:" + server.getPort());

Loading…
Cancel
Save