From b7111808416fa6464ebfdeda7dd9f4e27ec3f85f Mon Sep 17 00:00:00 2001 From: Oleg Zhurakousky Date: Mon, 25 Oct 2021 14:13:52 +0200 Subject: [PATCH] Fix test to accomodate the related commit in s-c-function s-c-function commit id - 40fe70d44c8649a0e1e688b3c65155c6217064b3 --- .../cloud/stream/function/ImplicitFunctionBindingTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-cloud-stream/src/test/java/org/springframework/cloud/stream/function/ImplicitFunctionBindingTests.java b/spring-cloud-stream/src/test/java/org/springframework/cloud/stream/function/ImplicitFunctionBindingTests.java index 8e735c7d9..e42010cf5 100644 --- a/spring-cloud-stream/src/test/java/org/springframework/cloud/stream/function/ImplicitFunctionBindingTests.java +++ b/spring-cloud-stream/src/test/java/org/springframework/cloud/stream/function/ImplicitFunctionBindingTests.java @@ -1493,7 +1493,7 @@ public class ImplicitFunctionBindingTests { return new FunctionAroundWrapper() { @Override - protected Object doApply(Message input, + protected Object doApply(Object input, FunctionInvocationWrapper targetFunction) { return targetFunction.apply(input); }