Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_antivirus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-03-04 00:53:17 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2018-03-04 00:53:17 +0300
commitb730d9c5798d688fd76829ac942e5d51af3738fa (patch)
treedfa8461ded26302fb64940f15462459b65216c89 /tests
parentdfc3b9e059d2cf1118e183efad6a663d6c8148a3 (diff)
Move ScannerFactory
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests')
-rw-r--r--tests/AvirWrapperTest.php2
-rw-r--r--tests/BackgroundScannerTest.php2
-rw-r--r--tests/Cron/TaskTest.php2
-rw-r--r--tests/ScannerTest.php2
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/AvirWrapperTest.php b/tests/AvirWrapperTest.php
index 3f43fd4..0421509 100644
--- a/tests/AvirWrapperTest.php
+++ b/tests/AvirWrapperTest.php
@@ -16,7 +16,7 @@ use OC\Files\Storage\StorageFactory;
use OC\Files\Storage\Temporary;
use OCA\Files_Antivirus\AvirWrapper;
use OCA\Files_Antivirus\Scanner\External;
-use OCA\Files_Antivirus\ScannerFactory;
+use OCA\Files_Antivirus\Scanner\ScannerFactory;
use Test\Traits\UserTrait;
use Test\Util\User\Dummy;
diff --git a/tests/BackgroundScannerTest.php b/tests/BackgroundScannerTest.php
index 019157a..35bd714 100644
--- a/tests/BackgroundScannerTest.php
+++ b/tests/BackgroundScannerTest.php
@@ -11,7 +11,7 @@
namespace OCA\Files_Antivirus\Tests;
use OCA\Files_Antivirus\BackgroundScanner;
-use OCA\Files_Antivirus\ScannerFactory;
+use OCA\Files_Antivirus\Scanner\ScannerFactory;
use Doctrine\DBAL\Driver\PDOStatement;
class BackgroundScannerTest extends TestBase {
diff --git a/tests/Cron/TaskTest.php b/tests/Cron/TaskTest.php
index 4f4e3e9..c8925b5 100644
--- a/tests/Cron/TaskTest.php
+++ b/tests/Cron/TaskTest.php
@@ -10,7 +10,7 @@ namespace OCA\Files_Antivirus\Tests\Cron;
use OC\User\Manager;
use OCA\Files_Antivirus\AppConfig;
-use \OCA\Files_Antivirus\ScannerFactory;
+use \OCA\Files_Antivirus\Scanner\ScannerFactory;
use \OCA\Files_Antivirus\BackgroundScanner;
use OCA\Files_antivirus\Tests\TestBase;
use OCP\IConfig;
diff --git a/tests/ScannerTest.php b/tests/ScannerTest.php
index 5b5eaf4..4d332c7 100644
--- a/tests/ScannerTest.php
+++ b/tests/ScannerTest.php
@@ -11,7 +11,7 @@ namespace OCA\Files_Antivirus\Tests;
use OC\Files\View;
use \OCA\Files_Antivirus\Db\RuleMapper;
use \OCA\Files_Antivirus\Item;
-use \OCA\Files_Antivirus\ScannerFactory;
+use \OCA\Files_Antivirus\Scanner\ScannerFactory;
use Test\Traits\UserTrait;
/**