summaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-05-18 18:47:54 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2016-05-18 18:57:45 +0200
commitc54d79947b046056edbe290beeb9b77ec8594969 (patch)
treeb74e1c89901223cd334a195c9de5172ce166a42f /tests/lib
parent5ce5eb195ac6b464455b1e55ed37af3f555dfb21 (diff)
downloadnextcloud-server-c54d79947b046056edbe290beeb9b77ec8594969.tar.gz
nextcloud-server-c54d79947b046056edbe290beeb9b77ec8594969.zip
Fix missing namespaces in tests/lib/db/
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/db/mysqlmigration.php6
-rw-r--r--tests/lib/db/sqlitemigration.php6
2 files changed, 8 insertions, 4 deletions
diff --git a/tests/lib/db/mysqlmigration.php b/tests/lib/db/mysqlmigration.php
index 51e8801dc3b..42ed6ba7251 100644
--- a/tests/lib/db/mysqlmigration.php
+++ b/tests/lib/db/mysqlmigration.php
@@ -6,12 +6,14 @@
* See the COPYING-README file.
*/
+namespace Test\DB;
+
/**
- * Class TestMySqlMigration
+ * Class MySqlMigration
*
* @group DB
*/
-class TestMySqlMigration extends \Test\TestCase {
+class MySqlMigration extends \Test\TestCase {
/** @var \Doctrine\DBAL\Connection */
private $connection;
diff --git a/tests/lib/db/sqlitemigration.php b/tests/lib/db/sqlitemigration.php
index f23f4d4ee86..176b947e310 100644
--- a/tests/lib/db/sqlitemigration.php
+++ b/tests/lib/db/sqlitemigration.php
@@ -6,12 +6,14 @@
* See the COPYING-README file.
*/
+namespace Test\DB;
+
/**
- * Class TestSqliteMigration
+ * Class SqliteMigration
*
* @group DB
*/
-class TestSqliteMigration extends \Test\TestCase {
+class SqliteMigration extends \Test\TestCase {
/** @var \Doctrine\DBAL\Connection */
private $connection;