8000 minor #53789 [Messenger] Fix failing Redis test in AppVeyor (alexandr… · symfony/symfony@24daf5b · GitHub
[go: up one dir, main page]

Skip to content

Commit 24daf5b

Browse files
minor #53789 [Messenger] Fix failing Redis test in AppVeyor (alexandre-daubois)
This PR was merged into the 5.4 branch. Discussion ---------- [Messenger] Fix failing Redis test in AppVeyor | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | Fix Appveyor | License | MIT Fixes AppVeyor failure `Failed asserting that null is not null.` that can be see here: https://ci.appveyor.com/project/fabpot/symfony/builds/49110475 Commits ------- 5c5e569 [Messenger] Fix failing Redis test
2 parents 9a4b832 + 5c5e569 commit 24daf5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Messenger/Bridge/Redis/Tests/Transport/RedisExtIntegrationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ public function testGetAfterReject()
326326
$failing = $connection->get();
327327
$connection->reject($failing['id']);
328328

329-
$connection = Connection::fromDsn('redis://localhost/messenger-rejectthenget', ['delete_after_ack' => true]);
329+
$connection = Connection::fromDsn('redis://localhost/messenger-rejectthenget', ['delete_after_ack' => true], $redis);
330330
$this->assertNotNull($connection->get());
331331
} finally {
332332
$redis->unlink('messenger-rejectthenget');

0 commit comments

Comments
 (0)
0