0
0
Fork 0

Fix some flaky tests that randomly failed because of item ordering (#17509)

This commit is contained in:
Claire 2022-02-10 22:00:10 +01:00 committed by GitHub
parent 2af03164cb
commit 472bc89611
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 20 deletions

View file

@ -114,7 +114,7 @@ RSpec.describe UpdateStatusService, type: :service do
end
it 'keeps old mentions as silent mentions' do
expect(status.mentions.pluck(:account_id)).to eq [alice.id, bob.id]
expect(status.mentions.pluck(:account_id)).to match_array([alice.id, bob.id])
end
end