We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0849d5 commit bf733f3Copy full SHA for bf733f3
tests/system/CommonFunctionsTest.php
@@ -795,6 +795,11 @@ public function testTraceWithCSP(): void
795
796
Kint::$cli_detection = false;
797
798
+ // Workaround for errors on PHPUnit 10 and PHP 8.3.
799
+ // See https://github.com/sebastianbergmann/phpunit/issues/5403#issuecomment-1906810619
800
+ // `$app->initialize()` sets error handler.
801
+ restore_error_handler();
802
+
803
$this->expectOutputRegex('/<style class="kint-rich-style" nonce="[0-9a-z]{24}">/u');
804
trace();
805
}
0 commit comments