We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32d6545 commit 4d65644Copy full SHA for 4d65644
Tests/Middleware/Debug/MiddlewareTest.php
@@ -11,9 +11,11 @@
11
use PHPUnit\Framework\TestCase;
12
use Symfony\Bridge\Doctrine\Middleware\Debug\DebugDataHolder;
13
use Symfony\Bridge\Doctrine\Middleware\Debug\Middleware;
14
-use Symfony\Bridge\PhpUnit\ClockMock;
15
use Symfony\Component\Stopwatch\Stopwatch;
16
+/**
17
+ * @requires extension pdo_sqlite
18
+ */
19
class MiddlewareTest extends TestCase
20
{
21
private $debugDataHolder;
@@ -27,8 +29,6 @@ protected function setUp(): void
27
29
if (!interface_exists(MiddlewareInterface::class)) {
28
30
$this->markTestSkipped(sprintf('%s needed to run this test', MiddlewareInterface::class));
31
}
-
- ClockMock::withClockMock(false);
32
33
34
private function init(bool $withStopwatch = true): void
0 commit comments