summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2017-09-21 13:19:05 +0100
committerNick Thomas <nick@gitlab.com>2017-09-21 13:19:05 +0100
commit5af846539678a6a6a8959559a069da4243029720 (patch)
tree2917d7eaf4f7a2648797751c76db3097cff9751a
parentcfccb2785fb8b98a013170aae4b931e9431739d1 (diff)
downloadgitlab-ce-5af846539678a6a6a8959559a069da4243029720.tar.gz
Simplify a test
-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