From 47a5a93e3e9ca2f966b932e6ea0a381b4d918945 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sun, 13 Sep 2020 11:04:13 +0200 Subject: [PATCH] fix filename being cleaned up at end of tests --- .../Tests/Command/CacheClearCommand/CacheClearCommandTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/Command/CacheClearCommand/CacheClearCommandTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/Command/CacheClearCommand/CacheClearCommandTest.php index 8a740413c1..41769f49d1 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/Command/CacheClearCommand/CacheClearCommandTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/Command/CacheClearCommand/CacheClearCommandTest.php @@ -38,7 +38,7 @@ class CacheClearCommandTest extends TestCase protected function tearDown(): void { $this->fs->remove($this->kernel->getProjectDir()); - $this->fs->remove(__DIR__.'/Fixture/preload.php'); + $this->fs->remove(__DIR__.'/Fixture/.preload.php'); } public function testCacheIsFreshAfterCacheClearedWithWarmup()