Skip to content

Commit 747e72f

Browse files
committed
Merge branch '6.4' into 7.0
* 6.4: fix merge [AssetMapper] Split test dirs in tests Fix typo Change incorrect check for the `stateless` request attribute use copy() instead of rename() on Windows test: kebab-case to snake_case [PropertyInfo] Handle collection in PhpStan same as PhpDoc [Messenger] Passing to `WorkerMessageRetriedEvent` envelope with actual stamps after sent
2 parents 5d70186 + fe5d4fe commit 747e72f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/EventListener/LocaleListenerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public function testRequestNoLocaleFromAcceptLanguageHeader()
205205
$this->assertEquals('fr_FR', $request->getLocale());
206206
}
207207

208-
public function testRequestAttributeLocaleNotOverridenFromAcceptLanguageHeader()
208+
public function testRequestAttributeLocaleNotOverriddenFromAcceptLanguageHeader()
209209
{
210210
$request = Request::create('/');
211211
$request->attributes->set('_locale', 'it');

Tests/EventListener/SessionListenerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ public function testUninitializedSessionWithoutInitializedSession()
562562
$this->assertSame('60', $response->headers->getCacheControlDirective('s-maxage'));
563563
}
564564

565-
public function testResponseHeadersMaxAgeAndExpiresNotBeOverridenIfSessionStarted()
565+
public function testResponseHeadersMaxAgeAndExpiresNotBeOverriddenIfSessionStarted()
566566
{
567567
$session = $this->createMock(Session::class);
568568
$session->expects($this->once())->method('getUsageIndex')->willReturn(1);

0 commit comments

Comments
 (0)