From b7cee792db6d01cf3dd6ea0d1714609d3156ec07 Mon Sep 17 00:00:00 2001 From: Alexander Dmitryuk Date: Tue, 5 Nov 2019 14:48:20 +0700 Subject: [PATCH] fix test --- tests/Monolog/Handler/ProcessHandlerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Monolog/Handler/ProcessHandlerTest.php b/tests/Monolog/Handler/ProcessHandlerTest.php index fc1aff47..70619e70 100644 --- a/tests/Monolog/Handler/ProcessHandlerTest.php +++ b/tests/Monolog/Handler/ProcessHandlerTest.php @@ -48,7 +48,7 @@ class ProcessHandlerTest extends TestCase $handler->expects($this->exactly(2)) ->method('writeProcessInput') - ->withConsecutive($this->stringContains($fixtures[0]), $this->stringContains($fixtures[1])); + ->withConsecutive([$this->stringContains($fixtures[0])], [$this->stringContains($fixtures[1])]); /** @var ProcessHandler $handler */ $handler->handle($this->getRecord(Logger::WARNING, $fixtures[0]));