summaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-05-19 08:53:06 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2016-05-19 08:53:06 +0200
commit859d2bc0ffb0c0c8a473679c1e785366e83b267b (patch)
treef2025f6374294edaf1508aecff70a89129aeb52f /tests/lib
parent71603fe34830c6b7e65cb59ef116611544a18d1a (diff)
downloadnextcloud-server-859d2bc0ffb0c0c8a473679c1e785366e83b267b.tar.gz
nextcloud-server-859d2bc0ffb0c0c8a473679c1e785366e83b267b.zip
Fix namespace of memcache/ and ocs/
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/memcache/FactoryTest.php (renamed from tests/lib/memcache/factory.php)2
-rw-r--r--tests/lib/ocs/PrivatedataTest.php (renamed from tests/lib/ocs/privatedata.php)8
2 files changed, 7 insertions, 3 deletions
diff --git a/tests/lib/memcache/factory.php b/tests/lib/memcache/FactoryTest.php
index 33a27a42113..8607ea7de9b 100644
--- a/tests/lib/memcache/factory.php
+++ b/tests/lib/memcache/FactoryTest.php
@@ -56,7 +56,7 @@ class Test_Factory_Unavailable_Cache2 {
}
}
-class Test_Factory extends \Test\TestCase {
+class FactoryTest extends \Test\TestCase {
const AVAILABLE1 = '\\Test\\Memcache\\Test_Factory_Available_Cache1';
const AVAILABLE2 = '\\Test\\Memcache\\Test_Factory_Available_Cache2';
const UNAVAILABLE1 = '\\Test\\Memcache\\Test_Factory_Unavailable_Cache1';
diff --git a/tests/lib/ocs/privatedata.php b/tests/lib/ocs/PrivatedataTest.php
index ce153bf07d6..0b3b23b8804 100644
--- a/tests/lib/ocs/privatedata.php
+++ b/tests/lib/ocs/PrivatedataTest.php
@@ -20,12 +20,16 @@
*
*/
+namespace Test\OCS;
+
+use OC_OCS_Privatedata;
+
/**
- * Class Test_OC_OCS_Privatedata
+ * Class PrivatedataTest
*
* @group DB
*/
-class Test_OC_OCS_Privatedata extends \Test\TestCase {
+class PrivatedataTest extends \Test\TestCase {
private $appKey;
protected function setUp() {