Ver código fonte

Fix method case

Jordi Boggiano 9 anos atrás
pai
commit
992a1a20a0
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      tests/Monolog/Handler/RedisHandlerTest.php

+ 1 - 1
tests/Monolog/Handler/RedisHandlerTest.php

@@ -59,7 +59,7 @@ class RedisHandlerTest extends TestCase
 
 
         // Redis uses rPush
         // Redis uses rPush
         $redis->expects($this->once())
         $redis->expects($this->once())
-            ->method('rPush')
+            ->method('rpush')
             ->with('key', 'test');
             ->with('key', 'test');
 
 
         $record = $this->getRecord(Logger::WARNING, 'test', ['data' => new \stdClass, 'foo' => 34]);
         $record = $this->getRecord(Logger::WARNING, 'test', ['data' => new \stdClass, 'foo' => 34]);