mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-05 12:47:39 +02:00
Update RavenHandlerTest.php
This commit is contained in:
@@ -78,8 +78,8 @@ class RavenHandlerTest extends TestCase
|
|||||||
$ravenClient = $this->getRavenClient();
|
$ravenClient = $this->getRavenClient();
|
||||||
$handler = $this->getHandler($ravenClient);
|
$handler = $this->getHandler($ravenClient);
|
||||||
|
|
||||||
$tags = array('tags' => array(1, 2, 'foo'));
|
$tags = array(1, 2, 'foo');
|
||||||
$record = $this->getRecord(Logger::INFO, "test", $tags);
|
$record = $this->getRecord(Logger::INFO, "test", array('tags' => $tags));
|
||||||
$handler->handle($record);
|
$handler->handle($record);
|
||||||
|
|
||||||
$this->assertEquals($tags, $ravenClient->lastData['tags']);
|
$this->assertEquals($tags, $ravenClient->lastData['tags']);
|
||||||
|
Reference in New Issue
Block a user