1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-11 07:34:12 +02:00

Remopve dead varialble

This makes it more obvious that this test is not actually doing much
This commit is contained in:
jeroendedauw
2015-04-27 01:53:54 +02:00
parent d84ba2cb20
commit f8f6615887

View File

@@ -20,16 +20,6 @@ class CouchDBHandlerTest extends TestCase
{
$record = $this->getRecord(Logger::WARNING, 'test', array('data' => new \stdClass, 'foo' => 34));
$expected = array(
'message' => 'test',
'context' => array('data' => '[object] (stdClass: {})', 'foo' => 34),
'level' => Logger::WARNING,
'level_name' => 'WARNING',
'channel' => 'test',
'datetime' => $record['datetime']->format('Y-m-d H:i:s'),
'extra' => array(),
);
$handler = new CouchDBHandler();
try {