1
0
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:
ipsq
2014-03-31 21:12:07 +02:00
parent 8e0c9fddc4
commit a3e7ed6218

View File

@@ -78,8 +78,8 @@ class RavenHandlerTest extends TestCase
$ravenClient = $this->getRavenClient();
$handler = $this->getHandler($ravenClient);
$tags = array('tags' => array(1, 2, 'foo'));
$record = $this->getRecord(Logger::INFO, "test", $tags);
$tags = array(1, 2, 'foo');
$record = $this->getRecord(Logger::INFO, "test", array('tags' => $tags));
$handler->handle($record);
$this->assertEquals($tags, $ravenClient->lastData['tags']);