Commit e9bc346d authored by Rémy Coutable's avatar Rémy Coutable

Use match_array instead of eq when order is irrelevant

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent c62314ab
...@@ -138,7 +138,7 @@ describe Issuable::BulkUpdateService, services: true do ...@@ -138,7 +138,7 @@ describe Issuable::BulkUpdateService, services: true do
let(:labels) { [bug, regression] } let(:labels) { [bug, regression] }
it 'updates the labels of all issues passed to the labels passed' do it 'updates the labels of all issues passed to the labels passed' do
expect(issues.map(&:reload).map(&:label_ids)).to all(eq(labels.map(&:id))) expect(issues.map(&:reload).map(&:label_ids)).to all(match_array(labels.map(&:id)))
end end
it 'does not update issues not passed in' do it 'does not update issues not passed in' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment