mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-22 07:05:23 +01:00
Avoid validate: false
save in expired poll create activity spec (#33367)
This commit is contained in:
parent
344e2903b3
commit
d2fbf42b0e
1 changed files with 3 additions and 3 deletions
|
@ -993,9 +993,9 @@ RSpec.describe ActivityPub::Activity::Create do
|
|||
|
||||
context 'when a vote to an expired local poll' do
|
||||
let(:poll) do
|
||||
poll = Fabricate.build(:poll, options: %w(Yellow Blue), expires_at: 1.day.ago)
|
||||
poll.save(validate: false)
|
||||
poll
|
||||
travel_to 2.days.ago do
|
||||
Fabricate(:poll, options: %w(Yellow Blue), expires_at: 1.day.from_now)
|
||||
end
|
||||
end
|
||||
let!(:local_status) { Fabricate(:status, poll: poll) }
|
||||
|
||||
|
|
Loading…
Reference in a new issue