Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Crawford <[email protected]>
  • Loading branch information
stephen-crawford committed Dec 21, 2023
1 parent d0f14e0 commit cde5bd9
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,6 @@ public void testSerialize() throws IOException {
// act
final String json = objectMapper.writeValueAsString(auditConfig);
// assert
System.out.println("JSON BUILDER OUTPUT IS: " + jsonBuilder);
System.out.println("JSON OUTPUT IS: " + json);
assertTrue(compareJson(jsonBuilder.toString(), json));
}

Expand Down Expand Up @@ -380,7 +378,6 @@ private boolean compareJson(final String json1, final String json2) throws JsonP
ObjectNode objectNode1 = objectMapper.readValue(json1, ObjectNode.class);
ObjectNode objectNode2 = objectMapper.readValue(json2, ObjectNode.class);

System.out.println("Checking if " + objectNode1 + " is equal to " + objectNode2 + ". Equal? " + objectNode1.equals(objectNode2));
return objectNode1.equals(objectNode2);
}
}

0 comments on commit cde5bd9

Please sign in to comment.