We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88f1820 commit bc61642Copy full SHA for bc61642
security-oauth2-quickstart/src/test/java/org/acme/security/oauth2/TokenSecuredResourceTest.java
@@ -17,7 +17,7 @@ class TokenSecuredResourceTest {
17
void testPermitAll() {
18
RestAssured.given()
19
.when()
20
- .header("Authorization", "Bearer: " + BEARER_TOKEN)
+ .header("Authorization", "Bearer " + BEARER_TOKEN)
21
.get("/secured/permit-all")
22
.then()
23
.statusCode(200)
@@ -28,7 +28,7 @@ void testPermitAll() {
28
void testRolesAllowed() {
29
30
31
32
.get("/secured/roles-allowed")
33
34
0 commit comments