Code Duplication    Length = 4-4 lines in 2 locations

tests/Functional/Entity/TaskExecutionRepositoryTest.php 2 locations

@@ 65-68 (lines=4) @@
62
        $this->taskRepository->save($task);
63
64
        $executions = [];
65
        for ($i = 0; $i < 3; ++$i) {
66
            $execution = $this->save($task);
67
            $executions[$execution->getUuid()] = $execution;
68
        }
69
70
        $result = $this->taskExecutionRepository->findAll();
71
@@ 85-88 (lines=4) @@
82
        $this->taskRepository->save($task);
83
84
        $executions = [];
85
        for ($i = 0; $i < 3; ++$i) {
86
            $execution = $this->save($task);
87
            $executions[$execution->getUuid()] = $execution;
88
        }
89
90
        $result = $this->taskExecutionRepository->findAll(1, 2);
91