Skip to content

Commit 9092e5e

Browse files
committed
MC-19014: QueueManagementTest caused flakiness during nightly build Integration test runs
1 parent 30c3db8 commit 9092e5e

File tree

1 file changed

+3
-1
lines changed
  • app/code/Magento/MysqlMq/Test/Unit/Model/ResourceModel

1 file changed

+3
-1
lines changed

app/code/Magento/MysqlMq/Test/Unit/Model/ResourceModel/QueueTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,9 @@ public function testGetMessages()
206206
]
207207
)->willReturnSelf();
208208
$select->expects($this->once())
209-
->method('order')->with(['queue_message_status.updated_at ASC', 'queue_message_status.id ASC'])->willReturnSelf();
209+
->method('order')
210+
->with(['queue_message_status.updated_at ASC', 'queue_message_status.id ASC'])
211+
->willReturnSelf();
210212
$select->expects($this->once())->method('limit')->with($limit)->willReturnSelf();
211213
$connection->expects($this->once())->method('fetchAll')->with($select)->willReturn($messages);
212214
$this->assertEquals($messages, $this->queue->getMessages($queueName, $limit));

0 commit comments

Comments
 (0)