Skip to content

Commit

Permalink
Update lib/src/test/java/com/auth0/jwt/JWTCreatorTest.java
Browse files Browse the repository at this point in the history
Co-Authored-By: Luciano Balmaceda <[email protected]>
  • Loading branch information
maxbalan and lbalmaceda authored Nov 5, 2019
1 parent 937f7d6 commit bb83717
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/test/java/com/auth0/jwt/JWTCreatorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void shouldReturnBuilderIfNullMapIsProvided() throws Exception {
}

@Test
public void shouldOverwriteExistingIfHeadersMapContainsTheSameKey() throws Exception {
public void shouldOverwriteExistingHeaderIfHeaderMapContainsTheSameKey() throws Exception {
Map<String, Object> header = new HashMap<String, Object>();
header.put(PublicClaims.KEY_ID, "xyz");

Expand Down Expand Up @@ -417,4 +417,4 @@ public void shouldAcceptCustomArrayClaimOfTypeLong() throws Exception {
String[] parts = jwt.split("\\.");
assertThat(parts[1], is("eyJuYW1lIjpbMSwyLDNdfQ"));
}
}
}

0 comments on commit bb83717

Please sign in to comment.