8000 minor #48979 [HttpKernel] fix tests by using the actual system's temp… · Marion-Valls/symfony@3d92007 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3d92007

Browse files
committed
minor symfony#48979 [HttpKernel] fix tests by using the actual system's temporary directory (xabbuh)
This PR was merged into the 6.3 branch. Discussion ---------- [HttpKernel] fix tests by using the actual system's temporary directory | Q | A | ------------- | --- | Branch? | 6.3 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | | License | MIT | Doc PR | Commits ------- deaa81c fix tests by using the actual system's temporary directory
2 parents 2ffc73f + deaa81c commit 3d92007
Copy full SHA for 3d92007

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpKernel/Tests/KernelTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
650650
public function boot()
651651
{
652652
$this->container->compile();
653-
parent::dumpConta 5172 iner(new ConfigCache(tempnam('/tmp', 'symfony-kernel-deprecated-parameter'), true), $this->container, Container::class, $this->getContainerBaseClass());
653+
parent::dumpContainer(new ConfigCache(tempnam(sys_get_temp_dir(), 'symfony-kernel-deprecated-parameter'), true), $this->container, Container::class, $this->getContainerBaseClass());
654654
}
655655

656656
public function getContainerClass(): string

0 commit comments

Comments
 (0)
0