use a fresh appdata factory in background job test

Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/12883/head
Robin Appelman 6 years ago
parent 740ea0d30e
commit 036475fc91
No known key found for this signature in database
GPG Key ID: 42B69D8A64526EFB

@ -25,6 +25,7 @@ namespace Test\Preview;
use OC\Files\AppData\Factory;
use OC\Preview\BackgroundCleanupJob;
use OC\PreviewManager;
use OC\SystemConfig;
use OCP\Files\IRootFolder;
use OCP\IDBConnection;
use Test\Traits\MountProviderTrait;
@ -77,7 +78,10 @@ class BackgroundCleanupJobTest extends \Test\TestCase {
$this->trashEnabled = $appManager->isEnabledForUser('files_trashbin', $this->userId);
$appManager->disableApp('files_trashbin');
$this->appDataFactory = \OC::$server->query(Factory::class);
$this->appDataFactory = new Factory(
\OC::$server->getRootFolder(),
\OC::$server->getSystemConfig()
);
$this->connection = \OC::$server->getDatabaseConnection();
$this->previewManager = \OC::$server->getPreviewManager();
$this->rootFolder = \OC::$server->getRootFolder();

Loading…
Cancel
Save