summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJordi Boggiano <j.boggiano@seld.be>2016-05-27 14:35:15 +0100
committerJordi Boggiano <j.boggiano@seld.be>2016-05-27 14:35:15 +0100
commit992a1a20a0627f4c680eb851130774f73c839400 (patch)
treebbfbc03e211b272f306e061187311b7ddb5c9cce
parentbaa7471cb55aac5c0c070800bfd3c590e5b07cc9 (diff)
downloadmonolog-992a1a20a0627f4c680eb851130774f73c839400.zip
monolog-992a1a20a0627f4c680eb851130774f73c839400.tar.gz
monolog-992a1a20a0627f4c680eb851130774f73c839400.tar.bz2
Fix method case
-rw-r--r--tests/Monolog/Handler/RedisHandlerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Monolog/Handler/RedisHandlerTest.php b/tests/Monolog/Handler/RedisHandlerTest.php
index 8363c9a..719a128 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]);