Skip to content

Commit 5e2b304

Browse files
committed
important import order
1 parent d14b2c4 commit 5e2b304

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

oauth2/oauth2-resource-server/src/test/java/org/springframework/security/oauth2/server/resource/web/server/authentication/ServerBearerTokenAuthenticationConverterTests.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,11 @@
1616

1717
package org.springframework.security.oauth2.server.resource.web.server.authentication;
1818

19-
import static org.assertj.core.api.Assertions.assertThat;
20-
import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
21-
import static org.springframework.http.HttpHeaders.AUTHORIZATION;
22-
import static org.springframework.http.MediaType.APPLICATION_FORM_URLENCODED;
23-
import static org.springframework.mock.http.server.reactive.MockServerHttpRequest.post;
24-
2519
import java.util.Base64;
2620

2721
import org.junit.jupiter.api.BeforeEach;
2822
import org.junit.jupiter.api.Test;
23+
2924
import org.springframework.http.HttpHeaders;
3025
import org.springframework.http.HttpStatus;
3126
import org.springframework.mock.http.server.reactive.MockServerHttpRequest;
@@ -35,6 +30,12 @@
3530
import org.springframework.security.oauth2.server.resource.BearerTokenErrorCodes;
3631
import org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken;
3732

33+
import static org.assertj.core.api.Assertions.assertThat;
34+
import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
35+
import static org.springframework.http.HttpHeaders.AUTHORIZATION;
36+
import static org.springframework.http.MediaType.APPLICATION_FORM_URLENCODED;
37+
import static org.springframework.mock.http.server.reactive.MockServerHttpRequest.post;
38+
3839
/**
3940
* @author Rob Winch
4041
* @since 5.1

0 commit comments

Comments
 (0)