Skip to content

Commit 94f08e1

Browse files
Merge branch '3.4' into 4.3
* 3.4: [Yaml] fix test for PHP 7.4 Add polyfill for TestCase::createMock() Skip tests that fatal-error on PHP 7.4 because of missing parent classes
2 parents e4f40d7 + 70d308f commit 94f08e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/ParserTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ class ParserTest extends TestCase
2525
/** @var Parser */
2626
protected $parser;
2727

28-
protected function setUp(): void
28+
private function doSetUp()
2929
{
3030
$this->parser = new Parser();
3131
}
3232

33-
protected function tearDown(): void
33+
private function doTearDown()
3434
{
3535
$this->parser = null;
3636

0 commit comments

Comments
 (0)