diff --git a/spring-modulith-test/src/main/java/org/springframework/modulith/test/Scenario.java b/spring-modulith-test/src/main/java/org/springframework/modulith/test/Scenario.java index c27e4a61..a6838a90 100644 --- a/spring-modulith-test/src/main/java/org/springframework/modulith/test/Scenario.java +++ b/spring-modulith-test/src/main/java/org/springframework/modulith/test/Scenario.java @@ -153,8 +153,8 @@ public class Scenario { * @param the type of the value returned by the stimulus. * @param supplier must not be {@literal null}. * @return will never be {@literal null}. - * @see StateChangeResult#andVerify(Consumer) - * @see EventResult#toArriveAndVerify(Consumer) + * @see org.springframework.modulith.test.Scenario.When.StateChangeResult#andVerify(Consumer) + * @see org.springframework.modulith.test.Scenario.When.EventResult#toArriveAndVerify(Consumer) */ public When stimulate(Supplier supplier) { return stimulate(tx -> tx.execute(__ -> supplier.get()));