Skip to content

Commit 9b260e0

Browse files
committed
Skipped failing test in PHP8.3
1 parent dc65a53 commit 9b260e0

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/AbstractCsvTest.php

-6
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
use PHPUnit\Framework\Attributes\DataProvider;
1717
use PHPUnit\Framework\Attributes\Group;
18-
use PHPUnit\Framework\Attributes\RequiresPhp;
1918
use PHPUnit\Framework\Attributes\RunInSeparateProcess;
2019
use PHPUnit\Framework\TestCase;
2120
use SplFileObject;
@@ -416,13 +415,8 @@ public function testBOMStripping(): void
416415
self::assertFalse($reader->isInputBOMIncluded());
417416
}
418417

419-
#[RunInSeparateProcess]
420418
public function testOutputDoesNotStripBOM(): void
421419
{
422-
if (version_compare(PHP_VERSION, '8.2.60') >= 0) {
423-
self::markTestSkipped('Run in separate process is not yet fully supported.');
424-
}
425-
426420
$raw_csv = ByteSequence::BOM_UTF8."john,doe,[email protected]\njane,doe,[email protected]\n";
427421
$csv = Reader::createFromString($raw_csv);
428422
$csv->setOutputBOM(ByteSequence::BOM_UTF16_BE);

0 commit comments

Comments
 (0)