This commit is contained in:
2025-07-02 12:46:18 +02:00
parent a180050622
commit 11e78286cb

View File

@@ -98,7 +98,7 @@ class CancelStaleWorkflowHandlerTest extends TestCase
$em = $this->prophesize(EntityManagerInterface::class); $em = $this->prophesize(EntityManagerInterface::class);
$em->flush()->shouldBeCalled(); $em->flush()->shouldBeCalled();
$em->remove($workflow)->shouldBeCalled(); $em->remove($workflow)->shouldNotBeCalled();
$handler = $this->buildHandler($workflow, $em->reveal(), $clock); $handler = $this->buildHandler($workflow, $em->reveal(), $clock);