Skip to content

Commit 857afb8

Browse files
committed
Don't skip Doctrine tests on php 8.
1 parent 6a5dd2b commit 857afb8

File tree

4 files changed

+0
-28
lines changed

4 files changed

+0
-28
lines changed

Tests/Form/Type/EntityTypeTest.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,6 @@ class EntityTypeTest extends BaseTypeTest
6161

6262
protected static $supportedFeatureSetVersion = 304;
6363

64-
public static function setUpBeforeClass()
65-
{
66-
if (\PHP_VERSION_ID >= 80000) {
67-
self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.');
68-
}
69-
}
70-
7164
protected function setUp()
7265
{
7366
$this->em = DoctrineTestHelper::createTestEntityManager();

Tests/Security/RememberMe/DoctrineTokenProviderTest.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,6 @@
1313
*/
1414
class DoctrineTokenProviderTest extends TestCase
1515
{
16-
public static function setUpBeforeClass()
17-
{
18-
if (\PHP_VERSION_ID >= 80000) {
19-
self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.');
20-
}
21-
}
22-
2316
public function testCreateNewToken()
2417
{
2518
$provider = $this->bootstrapProvider();

Tests/Security/User/EntityUserProviderTest.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,6 @@
2323

2424
class EntityUserProviderTest extends TestCase
2525
{
26-
public static function setUpBeforeClass()
27-
{
28-
if (\PHP_VERSION_ID >= 80000) {
29-
self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.');
30-
}
31-
}
32-
3326
public function testRefreshUserGetsUserByPrimaryKey()
3427
{
3528
$em = DoctrineTestHelper::createTestEntityManager();

Tests/Validator/Constraints/UniqueEntityValidatorTest.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,6 @@ class UniqueEntityValidatorTest extends ConstraintValidatorTestCase
6363

6464
protected $repositoryFactory;
6565

66-
public static function setUpBeforeClass()
67-
{
68-
if (\PHP_VERSION_ID >= 80000) {
69-
self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.');
70-
}
71-
}
72-
7366
protected function setUp()
7467
{
7568
$this->repositoryFactory = new TestRepositoryFactory();

0 commit comments

Comments
 (0)