summaryrefslogtreecommitdiff
path: root/spec/requests/api/ci/runner/runners_reset_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/requests/api/ci/runner/runners_reset_spec.rb')
-rw-r--r--spec/requests/api/ci/runner/runners_reset_spec.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/requests/api/ci/runner/runners_reset_spec.rb b/spec/requests/api/ci/runner/runners_reset_spec.rb
index 6ab21138d26..2d1e366e820 100644
--- a/spec/requests/api/ci/runner/runners_reset_spec.rb
+++ b/spec/requests/api/ci/runner/runners_reset_spec.rb
@@ -34,9 +34,10 @@ RSpec.describe API::Ci::Runner, :clean_gitlab_redis_shared_state, feature_catego
expect do
post api("/runners/reset_authentication_token"), params: { token: group_runner.reload.token }
+ group_runner.reload
expect(response).to have_gitlab_http_status(:success)
- expect(json_response).to eq({ 'token' => group_runner.reload.token, 'token_expires_at' => group_runner.reload.token_expires_at.iso8601(3) })
- expect(group_runner.reload.token_expires_at).to eq(5.days.from_now)
+ expect(json_response).to eq({ 'token' => group_runner.token, 'token_expires_at' => group_runner.token_expires_at.iso8601(3) })
+ expect(group_runner.token_expires_at).to eq(5.days.from_now)
end.to change { group_runner.reload.token }
end