Skip to content

Commit b7d5a10

Browse files
committed
Merge branch '4.4' into 5.2
* 4.4: 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 9e8feb3 + e95b36d commit b7d5a10

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)