Jordi Boggiano 9 лет назад
Родитель
Сommit
992a1a20a0
1 измененных файлов с 1 добавлено и 1 удалено
  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->expects($this->once())
-            ->method('rPush')
+            ->method('rpush')
             ->with('key', 'test');
 
         $record = $this->getRecord(Logger::WARNING, 'test', ['data' => new \stdClass, 'foo' => 34]);