Skip to content

Commit

Permalink
Fix test / formatting failures
Browse files Browse the repository at this point in the history
  • Loading branch information
jodygarnett committed Jul 23, 2024
1 parent 0b1b118 commit 029f3f2
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,6 @@ void test_serialization() {
objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(indexDocument);

assertEquals(
document,
"""
{
"metadataIdentifier" : "12345",
Expand All @@ -599,7 +598,9 @@ void test_serialization() {
"langfre" : "Occupation du sol"
} ]
}
""");
"""
.trim(),
document.trim());
} catch (JsonProcessingException e) {
fail("Serialization failed: " + e.getMessage());
}
Expand Down

0 comments on commit 029f3f2

Please sign in to comment.