1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-06 21:26:43 +02:00

Fix method case

This commit is contained in:
Jordi Boggiano
2016-05-27 14:35:15 +01:00
parent baa7471cb5
commit 992a1a20a0

View File

@@ -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]);