Code Duplication    Length = 4-4 lines in 2 locations

tests/Functional/Entity/TaskExecutionRepositoryTest.php 2 locations

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