Skip to content

Commit

Permalink
Fix toString of test expectation
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoh committed Mar 22, 2023
1 parent 0d45f9b commit c6f1a23
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public String toString() {
}
if (!properties.isEmpty()) {
sb.append("properties:\n");
properties.forEach((k, v) -> sb.append(StringUtils.indent(String.format("%s: %s", k, v), 2)));
properties.forEach((k, v) -> sb.append(StringUtils.indent(String.format("%s: %s", k, Node.prettyPrintJson(v)), 2)));
}
return sb.toString();
}
Expand Down

0 comments on commit c6f1a23

Please sign in to comment.