Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopheDuong committed Jul 28, 2021
1 parent c525dde commit c0c46ed
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -246,7 +246,8 @@ void testPopulatesOutputOnSuccess() throws WorkerException {

// verify output object matches declared json schema spec.
final Set<String> validate = new JsonSchemaValidator()
.validate(Jsons.jsonNode(Jsons.jsonNode(JsonSchemaValidator.getSchema(ConfigSchema.REPLICATION_OUTPUT.getConfigSchemaFile()))), Jsons.jsonNode(actual));
.validate(Jsons.jsonNode(Jsons.jsonNode(JsonSchemaValidator.getSchema(ConfigSchema.REPLICATION_OUTPUT.getConfigSchemaFile()))),
Jsons.jsonNode(actual));
assertTrue(validate.isEmpty(), "Validation errors: " + Strings.join(validate, ","));

// remove times so we can do the rest of the object <> object comparison.
Expand Down

0 comments on commit c0c46ed

Please sign in to comment.