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 RyanL1997 committed Jun 13, 2023
1 parent 278e20d commit 340d17b
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 340d17b

Please sign in to comment.