aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/ServerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/ServerTest.php')
-rw-r--r--tests/lib/ServerTest.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/lib/ServerTest.php b/tests/lib/ServerTest.php
index 371bc572b15..58d987a102d 100644
--- a/tests/lib/ServerTest.php
+++ b/tests/lib/ServerTest.php
@@ -8,6 +8,8 @@
namespace Test;
use OC\App\AppStore\Fetcher\AppFetcher;
+use OC\Config;
+use OC\Server;
use OCP\Comments\ICommentsManager;
/**
@@ -24,8 +26,8 @@ class ServerTest extends \Test\TestCase {
protected function setUp(): void {
parent::setUp();
- $config = new \OC\Config(\OC::$configDir);
- $this->server = new \OC\Server('', $config);
+ $config = new Config(\OC::$configDir);
+ $this->server = new Server('', $config);
}
public static function dataTestQuery(): array {