From 16f05a17e33b95bd896e886cc70bb37b150132d2 Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Wed, 9 Oct 2013 00:26:59 +0200 Subject: [PATCH] Update AbstractProcessingHandlerTest.php --- tests/Monolog/Handler/AbstractProcessingHandlerTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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'])); } }