Skip to content

Commit 7dd0839

Browse files
committed
Nit fixes and formatting following elastic#62490 comments
Fixing username
1 parent bc27589 commit 7dd0839

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/qa/oidc-op-tests/src/test/java/org/elasticsearch/xpack/security/authc/oidc/OpenIdConnectAuthIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ private Tuple<String, String> completeAuthentication(String redirectUri, String
421421
assertNotNull(responseBody.get("access_token"));
422422
assertNotNull(responseBody.get("refresh_token"));
423423
assertNotNull(responseBody.get("authentication"));
424-
assertEquals("facilitator", ((Map)responseBody.get("authentication")).get("username"));
424+
assertEquals("alice", ((Map)responseBody.get("authentication")).get("username"));
425425
return Tuple.tuple(responseBody.get("access_token").toString(), responseBody.get("refresh_token").toString());
426426
}
427427
}

0 commit comments

Comments
 (0)