We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30c3db8 commit 9092e5eCopy full SHA for 9092e5e
app/code/Magento/MysqlMq/Test/Unit/Model/ResourceModel/QueueTest.php
@@ -206,7 +206,9 @@ public function testGetMessages()
206
]
207
)->willReturnSelf();
208
$select->expects($this->once())
209
- ->method('order')->with(['queue_message_status.updated_at ASC', 'queue_message_status.id ASC'])->willReturnSelf();
+ ->method('order')
210
+ ->with(['queue_message_status.updated_at ASC', 'queue_message_status.id ASC'])
211
+ ->willReturnSelf();
212
$select->expects($this->once())->method('limit')->with($limit)->willReturnSelf();
213
$connection->expects($this->once())->method('fetchAll')->with($select)->willReturn($messages);
214
$this->assertEquals($messages, $this->queue->getMessages($queueName, $limit));
0 commit comments