From c54d79947b046056edbe290beeb9b77ec8594969 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 18 May 2016 18:47:54 +0200 Subject: [PATCH] Fix missing namespaces in tests/lib/db/ --- tests/lib/db/mysqlmigration.php | 6 ++++-- tests/lib/db/sqlitemigration.php | 6 ++++-- 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;