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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/App/InfoParserTest.php')
-rw-r--r--tests/lib/App/InfoParserTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/App/InfoParserTest.php b/tests/lib/App/InfoParserTest.php
index 8de0f4cfd4f..bc561611501 100644
--- a/tests/lib/App/InfoParserTest.php
+++ b/tests/lib/App/InfoParserTest.php
@@ -11,16 +11,16 @@ namespace Test\App;
use OC;
use OC\App\InfoParser;
use Test\TestCase;
+use OCP\Cache\CappedMemoryCache;
class InfoParserTest extends TestCase {
- /** @var OC\Cache\CappedMemoryCache */
+ /** @var OCP\Cache\CappedMemoryCache */
private static $cache;
public static function setUpBeforeClass(): void {
- self::$cache = new OC\Cache\CappedMemoryCache();
+ self::$cache = new CappedMemoryCache();
}
-
public function parserTest($expectedJson, $xmlFile, $cache = null) {
$parser = new InfoParser($cache);