1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-07-31 10:20:14 +02:00

Update AbstractProcessingHandlerTest.php

This commit is contained in:
Matthias Pigulla
2013-10-09 00:26:59 +02:00
parent 7c0edceadc
commit 16f05a17e3

View File

@@ -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']));
}
}