Fix FamiliarFollowersController test response comparison (#28121)

Co-authored-by: Filippo Giunchedi <filippo@debian.org>
This commit is contained in:
Filippo Giunchedi 2023-11-30 11:58:40 +01:00 committed by GitHub
parent c761cc4738
commit e6fd9a59e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,7 +28,7 @@ describe Api::V1::Accounts::FamiliarFollowersController do
account_ids = [account_a, account_b, account_b, account_a, account_a].map { |a| a.id.to_s }
get :index, params: { id: account_ids }
expect(body_as_json.pluck(:id)).to eq [account_a.id.to_s, account_b.id.to_s]
expect(body_as_json.pluck(:id)).to contain_exactly(account_a.id.to_s, account_b.id.to_s)
end
end
end