Skip to content

Commit

Permalink
Merge branch '6.4' into 7.1
Browse files Browse the repository at this point in the history
* 6.4:
  do not base services on PHPUnit mocks
  do not use TestCase::getName() when possible
  do not use assertCount() with generators
  • Loading branch information
xabbuh committed Oct 1, 2024
2 parents f77cbb3 + 640a742 commit 66a2c46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/Generator/Dumper/CompiledUrlGeneratorDumperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,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);
}
Expand Down

0 comments on commit 66a2c46

Please sign in to comment.