Skip to content

Commit 14442bb

Browse files
committed
Don't skip Doctrine tests on php 8.
1 parent befe3a4 commit 14442bb

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

Tests/Transport/Doctrine/DoctrineIntegrationTest.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
use Doctrine\DBAL\Driver\Result as DriverResult;
1515
use Doctrine\DBAL\DriverManager;
1616
use Doctrine\DBAL\Result;
17-
use Doctrine\DBAL\Version;
1817
use PHPUnit\Framework\TestCase;
1918
use Symfony\Component\Messenger\Tests\Fixtures\DummyMessage;
2019
use Symfony\Component\Messenger\Transport\Doctrine\Connection;
@@ -31,13 +30,6 @@ class DoctrineIntegrationTest extends TestCase
3130
/** @var string */
3231
private $sqliteFile;
3332

34-
public static function setUpBeforeClass(): void
35-
{
36-
if (\PHP_VERSION_ID >= 80000 && class_exists(Version::class)) {
37-
self::markTestSkipped('Doctrine DBAL 2.x is incompatible with PHP 8.');
38-
}
39-
}
40-
4133
protected function setUp(): void
4234
{
4335
$this->sqliteFile = sys_get_temp_dir().'/symfony.messenger.sqlite';

0 commit comments

Comments
 (0)