Skip to content

Commit 9f6c529

Browse files
Merge branch '4.3' into 4.4
* 4.3: (26 commits) [Console] Fix #33915, Detect dimensions using mode CON if vt100 is supported [HttpKernel][DataCollectorInterface] Ease compatibility Add tests to ensure defaultLocale is properly passed to the URL generator [DependencyInjection] Fix broken references in tests [HttpClient] Retry safe requests when then fail before the body arrives Avoid using of kernel after shutdown Simplify PHP CS Fixer configuration [PropertyInfo] Fixed type extraction for nullable collections of non-nullable elements [FrameworkBundle] [HttpKernel] fixed correct EOL and EOM month [Serializer] Fix property name usage for denormalization Name test accordingly to the tested class Fix MockFileSessionStorageTest::sessionDir being used after it's unset bumped Symfony version to 4.3.7 updated VERSION for 4.3.6 updated CHANGELOG for 4.3.6 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 [HttpClient] Fix perf issue when doing thousands of requests with curl ...
2 parents 6ac78f1 + 514e5bb commit 9f6c529

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)