Skip to content

Commit

Permalink
Fix JwtAuthenticationTests assertion (opensearch-project#2844)
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Perkins <[email protected]>
  • Loading branch information
cwperks authored and samuelcostae committed Jun 19, 2023
1 parent bbb8f2a commit e4b1fd8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public void shouldAuthenticateWithJwtToken_positive() {

response.assertStatusCode(200);
String username = response.getTextFromJsonBody(POINTER_USERNAME);
assertThat(username, equalTo(username));
assertThat(username, equalTo(USER_SUPERHERO));
}
}

Expand Down

0 comments on commit e4b1fd8

Please sign in to comment.