Skip to content

Commit e3cd1f0

Browse files
committed
Merge branch '5.2' into 5.x
* 5.2: skip intl dependent tests if the extension is missing make DateCaster tests timezone-agnostic error if the input string couldn't be parsed as a date IntegerType: Always use en for IntegerToLocalizedStringTransformer Fixes #40456 Uses the correct assignment action for console options depending if they are short or long [HttpKernel] ConfigDataCollector to return known data without the need of a Kernel [HttpClient] fix using stream_copy_to_stream() with responses cast to php streams FIx Trying to clone an uncloneable object of class
2 parents 16bfd73 + b7d5a10 commit e3cd1f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Store/StoreFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function testCreateStore($connection, string $expectedStoreClass)
4343
public function validConnections()
4444
{
4545
if (class_exists(\Redis::class)) {
46-
yield [$this->createMock(\Redis::class), RedisStore::class];
46+
yield [new \Redis(), RedisStore::class];
4747
}
4848
if (class_exists(RedisProxy::class)) {
4949
yield [$this->createMock(RedisProxy::class), RedisStore::class];

0 commit comments

Comments
 (0)