diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-10-26 12:10:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 12:10:48 +0200 |
commit | bf0ab3e0fac54515c13beef4ec09b0455f1bce67 (patch) | |
tree | 2e3ae5595ef28fd9c979225e46071d5d8cad711f /spec/lib | |
parent | 1ae508bf2faae016b88d15e273b0dc01de4fd7af (diff) |
Fix vacuum scheduler missing lock, locks never expiring (#19458)
Remove vacuuming of orphaned preview cards
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/vacuum/preview_cards_vacuum_spec.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/spec/lib/vacuum/preview_cards_vacuum_spec.rb b/spec/lib/vacuum/preview_cards_vacuum_spec.rb index 4a4a599fa..275f9ba92 100644 --- a/spec/lib/vacuum/preview_cards_vacuum_spec.rb +++ b/spec/lib/vacuum/preview_cards_vacuum_spec.rb @@ -28,9 +28,5 @@ RSpec.describe Vacuum::PreviewCardsVacuum do it 'does not delete attached preview cards' do expect(new_preview_card.reload).to be_persisted end - - it 'deletes preview cards not attached to any status' do - expect { orphaned_preview_card.reload }.to raise_error ActiveRecord::RecordNotFound - end end end |