Skip to content

Commit f353251

Browse files
committed
fix code style
1 parent 1e87dbd commit f353251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Transport/ConnectionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ public function testItSetupsTheTTLConnection()
347347
$factory->method('createQueue')->will($this->onConsecutiveCalls($amqpQueue0, $amqpQueue1));
348348

349349
$amqpExchange->expects($this->once())->method('declareExchange');
350-
$amqpExchange->expects($this->once())->method('publish')->with('body', 'routing_key', AMQP_NOPARAM, ['headers' => [], 'delivery_mode' => 2, 'timestamp' => time()]);
350+
$amqpExchange->expects($this->once())->method('publish')->with('body', 'routing_key', \AMQP_NOPARAM, ['headers' => [], 'delivery_mode' => 2, 'timestamp' => time()]);
351351
$amqpQueue0->expects($this->once())->method('declareQueue');
352352
$amqpQueue0->expects($this->exactly(2))->method('bind')->withConsecutive(
353353
[self::DEFAULT_EXCHANGE_NAME, 'binding_key0'],

0 commit comments

Comments
 (0)