diff options
Diffstat (limited to 'tests/Monolog/Handler/AbstractProcessingHandlerTest.php')
-rw-r--r-- | tests/Monolog/Handler/AbstractProcessingHandlerTest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Monolog/Handler/AbstractProcessingHandlerTest.php b/tests/Monolog/Handler/AbstractProcessingHandlerTest.php index b9cd350..ea6591d 100644 --- a/tests/Monolog/Handler/AbstractProcessingHandlerTest.php +++ b/tests/Monolog/Handler/AbstractProcessingHandlerTest.php @@ -64,6 +64,7 @@ class AbstractProcessingHandlerTest extends TestCase 'REQUEST_URI' => '', 'REQUEST_METHOD' => '', 'REMOTE_ADDR' => '', + 'REQUEST_URI' => '', ))); $handledRecord = null; $handler->expects($this->once()) @@ -73,6 +74,6 @@ class AbstractProcessingHandlerTest extends TestCase })) ; $handler->handle($this->getRecord()); - $this->assertEquals(3, count($handledRecord['extra'])); + $this->assertEquals(4, count($handledRecord['extra'])); } } |