Fix Formatting

This commit is contained in:
Josh Cummings 2024-07-29 14:54:08 -06:00
parent 0b0ffa01f7
commit 335dff63c1
No known key found for this signature in database
GPG Key ID: A306A51F43B8E5A5
1 changed files with 6 additions and 4 deletions

View File

@ -360,7 +360,9 @@ public class OpenSamlAssertingPartyMetadataRepositoryTests {
private final MockResponse response;
private AlwaysDispatch(String body) {
this.response = new MockResponse().setBody(body).setResponseCode(200).setBodyDelay(1, TimeUnit.MILLISECONDS);
this.response = new MockResponse().setBody(body)
.setResponseCode(200)
.setBodyDelay(1, TimeUnit.MILLISECONDS);
}
private AlwaysDispatch(MockResponse response) {