From a3e7ed62183f83431e80ef8682fa2656725c8be1 Mon Sep 17 00:00:00 2001 From: ipsq Date: Mon, 31 Mar 2014 21:12:07 +0200 Subject: [PATCH] Update RavenHandlerTest.php --- tests/Monolog/Handler/RavenHandlerTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Monolog/Handler/RavenHandlerTest.php b/tests/Monolog/Handler/RavenHandlerTest.php index b33e77c3..946d4440 100644 --- a/tests/Monolog/Handler/RavenHandlerTest.php +++ b/tests/Monolog/Handler/RavenHandlerTest.php @@ -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']);