1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-07-30 09:50:26 +02:00

Update/fix tests

This commit is contained in:
Jordi Boggiano
2012-04-22 11:24:28 +02:00
parent a435b8ee0f
commit b4c12e9f2c
2 changed files with 5 additions and 1 deletions

View File

@@ -65,6 +65,7 @@ class AbstractProcessingHandlerTest extends TestCase
'REQUEST_METHOD' => '',
'REMOTE_ADDR' => '',
'REQUEST_URI' => '',
'SERVER_NAME' => '',
)));
$handledRecord = null;
$handler->expects($this->once())
@@ -74,6 +75,6 @@ class AbstractProcessingHandlerTest extends TestCase
}))
;
$handler->handle($this->getRecord());
$this->assertEquals(4, count($handledRecord['extra']));
$this->assertEquals(5, count($handledRecord['extra']));
}
}