Fix missing namespaces in tests/lib/db/

This commit is contained in:
Joas Schilling 2016-05-18 18:47:54 +02:00
parent 5ce5eb195a
commit c54d79947b
No known key found for this signature in database
GPG key ID: 70A0B324C41C0946
2 changed files with 8 additions and 4 deletions

View file

@ -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;

View file

@ -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;