diff options
Diffstat (limited to 'apps/workflowengine/tests')
-rw-r--r-- | apps/workflowengine/tests/ManagerTest.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/workflowengine/tests/ManagerTest.php b/apps/workflowengine/tests/ManagerTest.php index 512d5dc1f61..0022fc37cb9 100644 --- a/apps/workflowengine/tests/ManagerTest.php +++ b/apps/workflowengine/tests/ManagerTest.php @@ -33,6 +33,7 @@ use OCP\IL10N; use OCP\ILogger; use OCP\IServerContainer; use OCP\IURLGenerator; +use OCP\IUserManager; use OCP\IUserSession; use OCP\SystemTag\ISystemTagManager; use OCP\WorkflowEngine\ICheck; @@ -295,7 +296,8 @@ class ManagerTest extends TestCase { $this->createMock(ILogger::class), $this->createMock(\OCP\Share\IManager::class), $this->createMock(IUserSession::class), - $this->createMock(ISystemTagManager::class) + $this->createMock(ISystemTagManager::class), + $this->createMock(IUserManager::class), ]) ->setMethodsExcept(['getEvents']) ->getMock(); |