Fix missing namespaces in tests/lib/db/

remotes/origin/smb-delay-init
Joas Schilling 10 years ago
parent 5ce5eb195a
commit c54d79947b
No known key found for this signature in database
GPG Key ID: 70A0B324C41C0946
  1. 6
      tests/lib/db/mysqlmigration.php
  2. 6
      tests/lib/db/sqlitemigration.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;

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

Loading…
Cancel
Save