Fix intermittent ap/activity/create spec timestamp check

This commit is contained in:
Matt Jankowski 2024-12-27 09:39:31 -05:00
parent 8770905186
commit 01788a3e37

View File

@ -768,7 +768,7 @@ RSpec.describe ActivityPub::Activity::Create do
expect { subject.perform }
.to change(sender.statuses, :count).by(1)
.and change { sender.featured_tags.first.reload.statuses_count }.by(1)
.and change { sender.featured_tags.first.reload.last_status_at }.from(nil).to(be_within(0.1).of(Time.now.utc))
.and change { sender.featured_tags.first.reload.last_status_at }.from(nil).to(be_present)
status = sender.statuses.first