From 992a1a20a0627f4c680eb851130774f73c839400 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Fri, 27 May 2016 14:35:15 +0100 Subject: [PATCH] Fix method case --- tests/Monolog/Handler/RedisHandlerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Monolog/Handler/RedisHandlerTest.php b/tests/Monolog/Handler/RedisHandlerTest.php index 8363c9a2..719a1281 100644 --- a/tests/Monolog/Handler/RedisHandlerTest.php +++ b/tests/Monolog/Handler/RedisHandlerTest.php @@ -59,7 +59,7 @@ class RedisHandlerTest extends TestCase // Redis uses rPush $redis->expects($this->once()) - ->method('rPush') + ->method('rpush') ->with('key', 'test'); $record = $this->getRecord(Logger::WARNING, 'test', ['data' => new \stdClass, 'foo' => 34]);