From 01788a3e3756844c80523d102f42ac805114dd49 Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Fri, 27 Dec 2024 09:39:31 -0500 Subject: [PATCH] Fix intermittent ap/activity/create spec timestamp check --- spec/lib/activitypub/activity/create_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/lib/activitypub/activity/create_spec.rb b/spec/lib/activitypub/activity/create_spec.rb index 342da29028..8be6766dad 100644 --- a/spec/lib/activitypub/activity/create_spec.rb +++ b/spec/lib/activitypub/activity/create_spec.rb @@ -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