diff options
author | Jordi Boggiano <j.boggiano@seld.be> | 2016-05-27 14:35:15 +0100 |
---|---|---|
committer | Jordi Boggiano <j.boggiano@seld.be> | 2016-05-27 14:35:15 +0100 |
commit | 992a1a20a0627f4c680eb851130774f73c839400 (patch) | |
tree | bbfbc03e211b272f306e061187311b7ddb5c9cce | |
parent | baa7471cb55aac5c0c070800bfd3c590e5b07cc9 (diff) | |
download | monolog-992a1a20a0627f4c680eb851130774f73c839400.zip monolog-992a1a20a0627f4c680eb851130774f73c839400.tar.gz monolog-992a1a20a0627f4c680eb851130774f73c839400.tar.bz2 |
Fix method case
-rw-r--r-- | tests/Monolog/Handler/RedisHandlerTest.php | 2 |
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]); |