Fix previous commit

This commit is contained in:
Oleg Zhurakousky
2021-07-28 12:39:42 +02:00
parent e3b3cd9c66
commit 1b091f7772
2 changed files with 13 additions and 13 deletions

View File

@@ -74,9 +74,11 @@ public abstract class TraceFunctionAroundWrapperTests {
function.setSkipOutputConversion(true);
Object result = function.get();
assertThat(result).isInstanceOf(Publisher.class);
/* TODO
* We'll need more assertions but for now this one will ensure that wrapper does not change the type of return value
* specifically for reactive cases where Flux became Message<Flux> due to the current code in TraceFunctionAroundWrapper
/*
* TODO We'll need more assertions but for now this one will ensure that
* wrapper does not change the type of return value specifically for reactive
* cases where Flux became Message<Flux> due to the current code in
* TraceFunctionAroundWrapper
*/
}
}