Skip to content

Commit b8f3d5a

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Generator/Dumper/CompiledUrlGeneratorDumperTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ protected function setUp(): void
3535
{
3636
$this->routeCollection = new RouteCollection();
3737
$this->generatorDumper = new CompiledUrlGeneratorDumper($this->routeCollection);
38-
$this->testTmpFilepath = sys_get_temp_dir().'/php_generator.'.$this->getName().'.php';
39-
$this->largeTestTmpFilepath = sys_get_temp_dir().'/php_generator.'.$this->getName().'.large.php';
38+
$this->testTmpFilepath = sys_get_temp_dir().'/php_generator.php';
39+
$this->largeTestTmpFilepath = sys_get_temp_dir().'/php_generator.large.php';
4040
@unlink($this->testTmpFilepath);
4141
@unlink($this->largeTestTmpFilepath);
4242
}

0 commit comments

Comments
 (0)