You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@staabm I just tagged 6.1.0 with your most recent changes. However, one test from PHPUnit's test suite fails now because a PHP warning is triggered:
1) /usr/local/src/phpunit/tests/end-to-end/regression/5614.phpt
Failed asserting that string matches format description.
--- Expected
+++ Actual
@@ @@
-PHPUnit %s by Sebastian Bergmann and contributors.
+Warning: count(): Recursion detected in /usr/local/src/phpunit/vendor/sebastian/exporter/src/Exporter.php on line 79
+PHPUnit 11.2.2-15-g3458dc7617 by Sebastian Bergmann and contributors.
-Runtime: %s
+Runtime: PHP 8.3.8
+
+Warning: count(): Recursion detected in /usr/local/src/phpunit/vendor/sebastian/exporter/src/Exporter.php on line 79
. 1 / 1 (100%)
-Time: %s, Memory: %s MB
+Time: 00:00.002, Memory: 8.00 MB
OK (1 test, 1 assertion)
@staabm I just tagged
6.1.0
with your most recent changes. However, one test from PHPUnit's test suite fails now because a PHP warning is triggered:This is the test code in question:
Would suppressing the warning (
@count($data, COUNT_RECURSIVE)
instead ofcount($data, COUNT_RECURSIVE)
) be the right thing to do here?The text was updated successfully, but these errors were encountered: