Skip to content

Commit

Permalink
Fix output serialisation
Browse files Browse the repository at this point in the history
  • Loading branch information
hugohills-regnosys committed Nov 15, 2024
1 parent 3fcd89e commit f9cc6f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public TestPackFunctionRunner create(PipelineModel.Transform transform,
.flatMap(TestPackUtils::getObjectMapper)
.orElse(JSON_OBJECT_MAPPER);
// Output serialisation
ObjectWriter outputObjectWriter = Optional.ofNullable(inputSerialisation)
ObjectWriter outputObjectWriter = Optional.ofNullable(outputSerialisation)
.flatMap(TestPackUtils::getObjectWriter)
.orElse(JSON_OBJECT_WRITER);
// XSD validation
Expand Down

0 comments on commit f9cc6f3

Please sign in to comment.