mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Fix missing namespaces in tests/lib/db/
This commit is contained in:
parent
5ce5eb195a
commit
c54d79947b
2 changed files with 8 additions and 4 deletions
|
|
@ -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…
Reference in a new issue