Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Monolog/tests/Integration/LogTest.php')
-rw-r--r--plugins/Monolog/tests/Integration/LogTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Monolog/tests/Integration/LogTest.php b/plugins/Monolog/tests/Integration/LogTest.php
index 9e24f4af13..e0e2c6e53b 100644
--- a/plugins/Monolog/tests/Integration/LogTest.php
+++ b/plugins/Monolog/tests/Integration/LogTest.php
@@ -31,7 +31,7 @@ class LogTest extends IntegrationTestCase
public static $expectedExceptionOutput = '[Monolog] [%s] LogTest.php(112): dummy error message
dummy backtrace';
- public static $expectedErrorOutput = '[Monolog] [%s] dummyerrorfile.php(145): Unknown error (102) - dummy error string
+ public static $expectedErrorOutput = '[Monolog] [%s] dummyerrorfile.php(145): dummy error message
dummy backtrace';
public function setUp(): void
@@ -41,7 +41,7 @@ class LogTest extends IntegrationTestCase
Log::unsetInstance();
@unlink(self::getLogFileLocation());
- Log::$debugBacktraceForTests = "dummy backtrace";
+ Log::$debugBacktraceForTests = "dummy error message\ndummy backtrace";
}
public function tearDown(): void