aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Cache/CappedMemoryCacheTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/Cache/CappedMemoryCacheTest.php')
-rw-r--r--tests/lib/Cache/CappedMemoryCacheTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/Cache/CappedMemoryCacheTest.php b/tests/lib/Cache/CappedMemoryCacheTest.php
index db0d2bd1193..b9d10b66100 100644
--- a/tests/lib/Cache/CappedMemoryCacheTest.php
+++ b/tests/lib/Cache/CappedMemoryCacheTest.php
@@ -30,11 +30,11 @@ namespace Test\Cache;
class CappedMemoryCacheTest extends TestCache {
protected function setUp(): void {
parent::setUp();
- $this->instance = new \OC\Cache\CappedMemoryCache();
+ $this->instance = new \OCP\Cache\CappedMemoryCache();
}
public function testSetOverCap() {
- $instance = new \OC\Cache\CappedMemoryCache(3);
+ $instance = new \OCP\Cache\CappedMemoryCache(3);
$instance->set('1', 'a');
$instance->set('2', 'b');