summaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
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;