diff options
Diffstat (limited to 'apps/workflowengine/tests/ManagerTest.php')
-rw-r--r-- | apps/workflowengine/tests/ManagerTest.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/workflowengine/tests/ManagerTest.php b/apps/workflowengine/tests/ManagerTest.php index aac5e5eadf5..92111a6989b 100644 --- a/apps/workflowengine/tests/ManagerTest.php +++ b/apps/workflowengine/tests/ManagerTest.php @@ -279,7 +279,12 @@ class ManagerTest extends TestCase { return $this->createMock(IOperation::class); } else if($class === File::class) { return $this->getMockBuilder(File::class) - ->setConstructorArgs([$this->l, $this->createMock(IURLGenerator::class), $this->createMock(IRootFolder::class)]) + ->setConstructorArgs([ + $this->l, + $this->createMock(IURLGenerator::class), + $this->createMock(IRootFolder::class), + $this->createMock(ILogger::class) + ]) ->setMethodsExcept(['getEvents']) ->getMock(); } |