1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-07-30 18:00:17 +02:00
This commit is contained in:
Alexander Dmitryuk
2019-11-05 14:48:20 +07:00
parent 6d51b31979
commit b7cee792db

View File

@@ -48,7 +48,7 @@ class ProcessHandlerTest extends TestCase
$handler->expects($this->exactly(2)) $handler->expects($this->exactly(2))
->method('writeProcessInput') ->method('writeProcessInput')
->withConsecutive($this->stringContains($fixtures[0]), $this->stringContains($fixtures[1])); ->withConsecutive([$this->stringContains($fixtures[0])], [$this->stringContains($fixtures[1])]);
/** @var ProcessHandler $handler */ /** @var ProcessHandler $handler */
$handler->handle($this->getRecord(Logger::WARNING, $fixtures[0])); $handler->handle($this->getRecord(Logger::WARNING, $fixtures[0]));