Skip to content

Commit bea2322

Browse files
committed
Fix whitespace
1 parent f4491f3 commit bea2322

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

config/src/test/java/org/springframework/security/config/annotation/web/configurers/WebAuthnConfigurerTests.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@ public void webauthnWhenConfiguredMessageConverter() throws Exception {
187187
TestingAuthenticationToken user = new TestingAuthenticationToken("user", "password", "ROLE_USER");
188188
SecurityContextHolder.setContext(new SecurityContextImpl(user));
189189
PublicKeyCredentialCreationOptions options = TestPublicKeyCredentialCreationOptions
190-
.createPublicKeyCredentialCreationOptions()
191-
.build();
190+
.createPublicKeyCredentialCreationOptions()
191+
.build();
192192
WebAuthnRelyingPartyOperations rpOperations = mock(WebAuthnRelyingPartyOperations.class);
193193
ConfigMessageConverter.rpOperations = rpOperations;
194194
given(rpOperations.createPublicKeyCredentialCreationOptions(any())).willReturn(options);
@@ -203,8 +203,8 @@ public void webauthnWhenConfiguredMessageConverter() throws Exception {
203203
ConfigMessageConverter.converter = converter;
204204
this.spring.register(ConfigMessageConverter.class).autowire();
205205
this.mvc.perform(post("/webauthn/register/options"))
206-
.andExpect(status().isOk())
207-
.andExpect(content().string(expectedBody));
206+
.andExpect(status().isOk())
207+
.andExpect(content().string(expectedBody));
208208
}
209209

210210
@Configuration

0 commit comments

Comments
 (0)