summaryrefslogtreecommitdiff
path: root/spec/workers/ssh_keys/expiring_soon_notification_worker_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/workers/ssh_keys/expiring_soon_notification_worker_spec.rb')
-rw-r--r--spec/workers/ssh_keys/expiring_soon_notification_worker_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/workers/ssh_keys/expiring_soon_notification_worker_spec.rb b/spec/workers/ssh_keys/expiring_soon_notification_worker_spec.rb
index 0a1d4a14ad0..e907d035020 100644
--- a/spec/workers/ssh_keys/expiring_soon_notification_worker_spec.rb
+++ b/spec/workers/ssh_keys/expiring_soon_notification_worker_spec.rb
@@ -38,7 +38,7 @@ RSpec.describe SshKeys::ExpiringSoonNotificationWorker, type: :worker do
end
context 'when key has expired in the past' do
- let_it_be(:expired_past) { create(:key, expires_at: 1.day.ago, user: user) }
+ let_it_be(:expired_past) { create(:key, :expired, user: user) }
it 'does not update notified column' do
expect { worker.perform }.not_to change { expired_past.reload.before_expiry_notification_delivered_at }