Skip to content

Commit ac6e7fa

Browse files
committed
Fix format
1 parent 5cb1d1e commit ac6e7fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/src/test/java/org/springframework/security/web/jackson2/SwitchUserGrantedAuthorityMixInTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ public class SwitchUserGrantedAuthorityMixInTest extends AbstractMixinTests {
5151
}
5252
""".formatted(SimpleGrantedAuthorityMixinTests.AUTHORITIES_ARRAYLIST_JSON);
5353
SwitchUserGrantedAuthority expected;
54+
5455
Authentication source;
5556

5657
@BeforeEach
5758
public void setupExpected() {
58-
this.source = new UsernamePasswordAuthenticationToken(
59-
"principal", "credentials",
59+
this.source = new UsernamePasswordAuthenticationToken("principal", "credentials",
6060
AuthorityUtils.createAuthorityList("ROLE_USER"));
6161
this.expected = new SwitchUserGrantedAuthority("switched", this.source);
6262
}

0 commit comments

Comments
 (0)