Skip to content

Commit c0bcd61

Browse files
Do not skip tests with PHP 8.5
1 parent 11ca27f commit c0bcd61

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

tests/end-to-end/regression/6294-display-errors-off.phpt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
--TEST--
22
https://github.com/sebastianbergmann/phpunit/issues/6294
3-
--SKIPIF--
4-
<?php declare(strict_types=1);
5-
if (version_compare(PHP_VERSION, '8.5.0-dev', '>=')) {
6-
print 'skip: PHP < 8.5 is required.';
7-
}
83
--INI--
94
display_errors=0
105
--FILE--

tests/end-to-end/regression/6294-display-errors-on.phpt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
--TEST--
22
https://github.com/sebastianbergmann/phpunit/issues/6294
3-
--SKIPIF--
4-
<?php declare(strict_types=1);
5-
if (version_compare(PHP_VERSION, '8.5.0-dev', '>=')) {
6-
print 'skip: PHP < 8.5 is required.';
7-
}
83
--INI--
94
display_errors=1
105
--FILE--
@@ -21,4 +16,4 @@ PHPUnit %s by Sebastian Bergmann and contributors.
2116
Runtime: %s
2217

2318

24-
Fatal error: Access level to PHPUnit\TestFixture\B::someFunction() must be public (as in class PHPUnit\TestFixture\A) in %sB.php on line %i
19+
Fatal error: Access level to PHPUnit\TestFixture\B::someFunction() must be public (as in class PHPUnit\TestFixture\A) in %sB.php on line %i%A

0 commit comments

Comments
 (0)