8000 Fix merge · symfony/symfony@57361a5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 57361a5

Browse files
Fix merge
1 parent 0dea24f commit 57361a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
8000
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ env:
2626
matrix:
2727
include:
2828
- php: 7.1
29-
env: php_extra="7.2 7.4snapshot"
29+
env: php_extra="7.2 7.4"
3030
- php: 7.3
3131
env: deps=high
3232
- php: 7.4

src/Symfony/Component/Messenger/Tests/Transport/AmqpExt/ConnectionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public function testBindingArguments()
287287
$factory->method('createQueue')->willReturn($amqpQueue);
288288

289289
$amqpExchange->expects($this->once())->method('declareExchange');
290-
$amqpExchange->expects($this->once())->method('publish')->with('body', null, AMQP_NOPARAM, ['headers' => []]);
290+
$amqpExchange->expects($this->once())->method('publish')->with('body', null, AMQP_NOPARAM, ['headers' => [], 'delivery_mode' => 2]);
291291
$amqpQueue->expects($this->once())->method('declareQueue');
292292
$amqpQueue->expects($this->exactly(1))->method('bind')->withConsecutive(
293293
[self::DEFAULT_EXCHANGE_NAME, null, ['x-match' => 'all']]

0 commit comments

Comments
 (0)
0