summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spec/models/ci/runner_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/ci/runner_spec.rb b/spec/models/ci/runner_spec.rb
index 99b4a82da88..ab931e5d43c 100644
--- a/spec/models/ci/runner_spec.rb
+++ b/spec/models/ci/runner_spec.rb
@@ -400,7 +400,7 @@ describe Ci::Runner do
context 'when database was updated recently' do
before do
- runner.update(contacted_at: Time.now)
+ runner.contacted_at = Time.now
end
it 'updates cache' do
@@ -412,7 +412,7 @@ describe Ci::Runner do
context 'when database was not updated recently' do
before do
- runner.update(contacted_at: 2.hours.ago)
+ runner.contacted_at = 2.hours.ago
end
it 'updates database' do