Skip to content

Commit 66a2c46

Browse files
committed
Merge branch '6.4' into 7.1
* 6.4: do not base services on PHPUnit mocks do not use TestCase::getName() when possible do not use assertCount() with generators
2 parents f77cbb3 + 640a742 commit 66a2c46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Generator/Dumper/CompiledUrlGeneratorDumperTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ protected function setUp(): void
3737

3838
$this->routeCollection = new RouteCollection();
3939
$this->generatorDumper = new CompiledUrlGeneratorDumper($this->routeCollection);
40-
$this->testTmpFilepath = sys_get_temp_dir().'/php_generator.'.$this->getName().'.php';
41-
$this->largeTestTmpFilepath = sys_get_temp_dir().'/php_generator.'.$this->getName().'.large.php';
40+
$this->testTmpFilepath = sys_get_temp_dir().'/php_generator.php';
41+
$this->largeTestTmpFilepath = sys_get_temp_dir().'/php_generator.large.php';
4242
@unlink($this->testTmpFilepath);
4343
@unlink($this->largeTestTmpFilepath);
4444
}

0 commit comments

Comments
 (0)