Fix namespace of tests/cache/
This commit is contained in:
parent
c54d79947b
commit
1b6cd583f7
4 changed files with 6 additions and 4 deletions
2
tests/lib/cache/cappedmemorycache.php
vendored
2
tests/lib/cache/cappedmemorycache.php
vendored
|
@ -29,7 +29,7 @@ namespace Test\Cache;
|
|||
*
|
||||
* @package Test\Cache
|
||||
*/
|
||||
class CappedMemoryCache extends \Test_Cache {
|
||||
class CappedMemoryCache extends TestCache {
|
||||
public function setUp() {
|
||||
parent::setUp();
|
||||
$this->instance = new \OC\Cache\CappedMemoryCache();
|
||||
|
|
|
@ -29,7 +29,7 @@ namespace Test\Cache;
|
|||
*
|
||||
* @package Test\Cache
|
||||
*/
|
||||
class FileCache extends \Test_Cache {
|
||||
class FileCache extends TestCache {
|
||||
/**
|
||||
* @var string
|
||||
* */
|
|
@ -6,7 +6,9 @@
|
|||
* See the COPYING-README file.
|
||||
*/
|
||||
|
||||
abstract class Test_Cache extends \Test\TestCase {
|
||||
namespace Test\Cache;
|
||||
|
||||
abstract class TestCache extends \Test\TestCase {
|
||||
/**
|
||||
* @var \OCP\ICache cache;
|
||||
*/
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
namespace Test\Memcache;
|
||||
|
||||
abstract class Cache extends \Test_Cache {
|
||||
abstract class Cache extends \Test\Cache\TestCache {
|
||||
/**
|
||||
* @var \OCP\IMemcache cache;
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue