aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workflowengine/tests
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2020-08-05 13:00:30 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2020-08-05 15:21:57 +0200
commitb59efb61bd462ae1d62724abeb052fb2870836f6 (patch)
treea9e8383ba71b61ca85e1e7c59f78ff0ab70ed1b4 /apps/workflowengine/tests
parent6c1c9273c0739bc9fd2d98c926b9673d0260672d (diff)
downloadnextcloud-server-b59efb61bd462ae1d62724abeb052fb2870836f6.tar.gz
nextcloud-server-b59efb61bd462ae1d62724abeb052fb2870836f6.zip
Flow File entity implements IContextPortation
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/workflowengine/tests')
-rw-r--r--apps/workflowengine/tests/ManagerTest.php4
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();