0
0
Fork 0

Fix some incorrect tests (#26035)

This commit is contained in:
Claire 2023-07-17 13:13:43 +02:00 committed by GitHub
parent 626f9cf831
commit f18618d7f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -28,12 +28,12 @@ RSpec.describe RemoveStatusService, type: :service do
it 'removes status from author\'s home feed' do
subject.call(@status)
expect(HomeFeed.new(alice).get(10)).to_not include(@status.id)
expect(HomeFeed.new(alice).get(10).pluck(:id)).to_not include(@status.id)
end
it 'removes status from local follower\'s home feed' do
subject.call(@status)
expect(HomeFeed.new(jeff).get(10)).to_not include(@status.id)
expect(HomeFeed.new(jeff).get(10).pluck(:id)).to_not include(@status.id)
end
it 'sends Delete activity to followers' do