summaryrefslogtreecommitdiff
path: root/spec/services/keys/last_used_service_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services/keys/last_used_service_spec.rb')
-rw-r--r--spec/services/keys/last_used_service_spec.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/spec/services/keys/last_used_service_spec.rb b/spec/services/keys/last_used_service_spec.rb
index edaace293ae..bb0fb6acf39 100644
--- a/spec/services/keys/last_used_service_spec.rb
+++ b/spec/services/keys/last_used_service_spec.rb
@@ -26,12 +26,7 @@ describe Keys::LastUsedService do
# make sure we _only_ update last_used_at and not always updated_at.
key = create(:key, last_used_at: 1.year.ago)
- recorder = ActiveRecord::QueryRecorder.new do
- described_class.new(key).execute
- end
-
- expect(recorder.count).to eq(1)
- expect(recorder.log[0]).not_to include('updated_at')
+ expect { described_class.new(key).execute }.not_to change { key.updated_at }
end
end