diff --git a/tests/TransitionerTest.php b/tests/TransitionerTest.php index f087b83..32d73c2 100644 --- a/tests/TransitionerTest.php +++ b/tests/TransitionerTest.php @@ -473,6 +473,7 @@ private function setCurrentStepForm(bool $valid, bool $submitted): void $form = $this->createStub(FormInterface::class); $form->method('isValid')->willReturn($valid); $form->method('isSubmitted')->willReturn($submitted); + $form->method('getName')->willReturn('form_name'); $this->flow->method('getCurrentStepForm')->willReturn($form); }