[VarExporter] tfix: s/markAsSkipped/markTestSkipped/

This commit is contained in:
David Prévot 2020-05-31 14:33:19 -10:00
parent d45883fb7b
commit 393c9d920a

View File

@ -92,7 +92,7 @@ class VarExporterTest extends TestCase
} elseif (\PHP_VERSION_ID < 70400) { } elseif (\PHP_VERSION_ID < 70400) {
$fixtureFile = __DIR__.'/Fixtures/'.$testName.'-legacy.php'; $fixtureFile = __DIR__.'/Fixtures/'.$testName.'-legacy.php';
} else { } else {
$this->markAsSkipped('PHP >= 7.4.6 required.'); $this->markTestSkipped('PHP >= 7.4.6 required.');
} }
$this->assertStringEqualsFile($fixtureFile, $dump); $this->assertStringEqualsFile($fixtureFile, $dump);