diff --git a/tests/Monolog/Handler/AbstractProcessingHandlerTest.php b/tests/Monolog/Handler/AbstractProcessingHandlerTest.php index 3485bdf3..96871d3e 100644 --- a/tests/Monolog/Handler/AbstractProcessingHandlerTest.php +++ b/tests/Monolog/Handler/AbstractProcessingHandlerTest.php @@ -65,6 +65,7 @@ class AbstractProcessingHandlerTest extends TestCase 'REQUEST_METHOD' => '', 'REMOTE_ADDR' => '', 'SERVER_NAME' => '', + 'UNIQUE_ID' => '', ))); $handledRecord = null; $handler->expects($this->once()) @@ -74,6 +75,6 @@ class AbstractProcessingHandlerTest extends TestCase })) ; $handler->handle($this->getRecord()); - $this->assertEquals(5, count($handledRecord['extra'])); + $this->assertEquals(6, count($handledRecord['extra'])); } }