Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
use function strtolower;
use function substr;

class SchemaManagerFunctionalTestCase extends DbalFunctionalTestCase
abstract class SchemaManagerFunctionalTestCase extends DbalFunctionalTestCase
{
/** @var AbstractSchemaManager */
protected $schemaManager;
Expand Down
2 changes: 1 addition & 1 deletion tests/Doctrine/Tests/DbalFunctionalTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use function strpos;
use function var_export;

class DbalFunctionalTestCase extends DbalTestCase
abstract class DbalFunctionalTestCase extends DbalTestCase
{
/**
* Shared connection when a TestCase is run alone (outside of it's functional suite)
Expand Down
2 changes: 1 addition & 1 deletion tests/Doctrine/Tests/DbalPerformanceTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* and stopTiming at the end of all tests. Tests that do not start or stop
* timing will fail.
*/
class DbalPerformanceTestCase extends DbalFunctionalTestCase
abstract class DbalPerformanceTestCase extends DbalFunctionalTestCase
{
/**
* time the test started
Expand Down