From bff59f76428caf9bf685f62f5d9b7dc4cc750751 Mon Sep 17 00:00:00 2001 From: George Mponos Date: Wed, 21 Nov 2018 22:58:31 +0200 Subject: [PATCH] Fix failing tests --- tests/Monolog/Processor/IntrospectionProcessorTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/Monolog/Processor/IntrospectionProcessorTest.php b/tests/Monolog/Processor/IntrospectionProcessorTest.php index 5f5d9aea..5dabbc51 100644 --- a/tests/Monolog/Processor/IntrospectionProcessorTest.php +++ b/tests/Monolog/Processor/IntrospectionProcessorTest.php @@ -90,8 +90,8 @@ class IntrospectionProcessorTest extends TestCase $expected['extra'] = [ 'file' => null, 'line' => null, - 'class' => 'ReflectionMethod', - 'function' => 'invokeArgs', + 'class' => 'PHPUnit\Framework\TestCase', + 'function' => 'runTest', ]; $processor = new IntrospectionProcessor(Logger::CRITICAL); @@ -111,8 +111,8 @@ class IntrospectionProcessorTest extends TestCase $expected['extra'] = [ 'file' => null, 'line' => null, - 'class' => 'ReflectionMethod', - 'function' => 'invokeArgs', + 'class' => 'PHPUnit\Framework\TestCase', + 'function' => 'runTest', ]; $processor = new IntrospectionProcessor(Logger::CRITICAL);