Skip to content

Commit

Permalink
fix the integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
schauder committed Nov 6, 2024
1 parent 1dcb098 commit 334f58f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ public Object writeValue(@Nullable Object value, TypeInformation<?> type) {
: getConversions().getCustomWriteTarget(type.getType());

if (customWriteTarget.isPresent()) {
return getConversionService().convert(value, customWriteTarget.get());
return getPotentiallyConvertedSimpleWrite(getConversionService().convert(value, customWriteTarget.get()));
}

if (TypeInformation.OBJECT != type) {
Expand Down

0 comments on commit 334f58f

Please sign in to comment.