From a89698b0e2aec7cec946a0271e3d23d5ed4bbc62 Mon Sep 17 00:00:00 2001 From: ipsq Date: Mon, 31 Mar 2014 20:45:14 +0200 Subject: [PATCH] Update RavenHandlerTest.php --- tests/Monolog/Handler/RavenHandlerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Monolog/Handler/RavenHandlerTest.php b/tests/Monolog/Handler/RavenHandlerTest.php index cb8c1e80..b33e77c3 100644 --- a/tests/Monolog/Handler/RavenHandlerTest.php +++ b/tests/Monolog/Handler/RavenHandlerTest.php @@ -82,7 +82,7 @@ class RavenHandlerTest extends TestCase $record = $this->getRecord(Logger::INFO, "test", $tags); $handler->handle($record); - $this->assertEquals($record['tags'], $tags); + $this->assertEquals($tags, $ravenClient->lastData['tags']); } public function testException()