diff --git a/src/Symfony/Component/Cache/Tests/Adapter/ApcuAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/ApcuAdapterTest.php index b92613e725ae1..a5dbeb6c24d13 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/ApcuAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/ApcuAdapterTest.php @@ -30,7 +30,7 @@ public function createCachePool(int $defaultLifetime = 0): CacheItemPoolInterfac $this->markTestSkipped('APCu extension is required.'); } if ('cli' === \PHP_SAPI && !filter_var(\ini_get('apc.enable_cli'), \FILTER_VALIDATE_BOOLEAN)) { - if ('testWithCliSapi' !== $this->getName()) { + if ('testWithCliSapi' !== (method_exists($this, 'name') ? $this->name() : $this->getName())) { $this->markTestSkipped('apc.enable_cli=1 is required.'); } } diff --git a/src/Symfony/Component/Routing/Tests/Generator/Dumper/CompiledUrlGeneratorDumperTest.php b/src/Symfony/Component/Routing/Tests/Generator/Dumper/CompiledUrlGeneratorDumperTest.php index ef3061db7b9ec..f65abc42e36a4 100644 --- a/src/Symfony/Component/Routing/Tests/Generator/Dumper/CompiledUrlGeneratorDumperTest.php +++ b/src/Symfony/Component/Routing/Tests/Generator/Dumper/CompiledUrlGeneratorDumperTest.php @@ -52,8 +52,8 @@ protected function setUp(): void $this->routeCollection = new RouteCollection(); $this->generatorDumper = new CompiledUrlGeneratorDumper($this->routeCollection); - $this->testTmpFilepath = sys_get_temp_dir().'/php_generator.'.$this->getName().'.php'; - $this->largeTestTmpFilepath = sys_get_temp_dir().'/php_generator.'.$this->getName().'.large.php'; + $this->testTmpFilepath = sys_get_temp_dir().'/php_generator.php'; + $this->largeTestTmpFilepath = sys_get_temp_dir().'/php_generator.large.php'; @unlink($this->testTmpFilepath); @unlink($this->largeTestTmpFilepath); }