Skip to content

Commit 514e5bb

Browse files
Merge branch '3.4' into 4.3
* 3.4: [DependencyInjection] Fix broken references in tests Avoid using of kernel after shutdown Simplify PHP CS Fixer configuration [FrameworkBundle] [HttpKernel] fixed correct EOL and EOM month Fix MockFileSessionStorageTest::sessionDir being used after it's unset bumped Symfony version to 3.4.34 updated VERSION for 3.4.33 update CONTRIBUTORS for 3.4.33 updated CHANGELOG for 3.4.33 [Stopwatch] Fixed a bug in stopwatch event getStartTime [Stopwatch] Fixed bug in getDuration when counting multiple ongoing periods Adding some validations tags on validators.et.xlf add missing translation for 94 (it)
2 parents 38f63e4 + a5d46a3 commit 514e5bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/Session/Storage/MockFileSessionStorageTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ protected function setUp(): void
4141

4242
protected function tearDown(): void
4343
{
44-
$this->sessionDir = null;
45-
$this->storage = null;
46-
array_map('unlink', glob($this->sessionDir.'/*.session'));
44+
array_map('unlink', glob($this->sessionDir.'/*'));
4745
if (is_dir($this->sessionDir)) {
4846
rmdir($this->sessionDir);
4947
}
48+
$this->sessionDir = null;
49+
$this->storage = null;
5050
}
5151

5252
public function testStart()

0 commit comments

Comments
 (0)