Skip to content

Commit

Permalink
fix naming typo
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorHarbo committed Dec 6, 2024
1 parent efc2244 commit 2ca101e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public Response timeMap(@Context UriInfo uriInfo, @Context HttpServletRequest ht
if (mimeTypeForResponse.isEmpty()) {
mimeTypeForResponse = "application/link-format";
}
log.info("Accept header not specified in path. Returning: " + mimeTypeForResponse);
log.info("Accept header not specified in path. Returning: '{}'", mimeTypeForResponse);
}

URI uri = PathResolver.mementoAPIResolver("/timemap/" + type + "/", uriInfo, url);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void testHeadersForPatternTwoPointOne() throws Exception {
}

@Test
public void testtimestampInUrlPatternTwoPointOne() throws Exception {
public void testTimestampInUrlPatternTwoPointOne() throws Exception {
PropertiesLoader.PLAYBACK_DISABLED = false; //
PropertiesLoader.MEMENTO_REDIRECT = true;

Expand Down

0 comments on commit 2ca101e

Please sign in to comment.