diff --git a/lib/api/helpers/ci.rb b/lib/api/helpers/ci.rb index 24669eba4bb..e928d7c874a 100644 --- a/lib/api/helpers/ci.rb +++ b/lib/api/helpers/ci.rb @@ -2,9 +2,8 @@ module API module Helpers module Ci def runner_registration_token_valid? - ActiveSupport::SecurityUtils.variable_size_secure_compare( - params[:token], - current_application_settings.runners_registration_token) + ActiveSupport::SecurityUtils.variable_size_secure_compare(params[:token], + current_application_settings.runners_registration_token) end def get_runner_version_from_params @@ -21,4 +20,4 @@ module API end end end -end \ No newline at end of file +end diff --git a/spec/requests/api/ci_spec.rb b/spec/requests/api/ci_spec.rb index c8d7abd3eb9..4eef78dd1c2 100644 --- a/spec/requests/api/ci_spec.rb +++ b/spec/requests/api/ci_spec.rb @@ -54,7 +54,7 @@ describe API::Ci do context 'when runner description is provided' do it 'creates runner' do post api('/runners'), token: registration_token, - description: 'server.hostname' + description: 'server.hostname' expect(response).to have_http_status 201 expect(Ci::Runner.first.description).to eq('server.hostname') @@ -64,7 +64,7 @@ describe API::Ci do context 'when runner tags are provided' do it 'creates runner' do post api('/runners'), token: registration_token, - tag_list: 'tag1, tag2' + tag_list: 'tag1, tag2' expect(response).to have_http_status 201 expect(Ci::Runner.first.tag_list.sort).to eq(%w(tag1 tag2)) @@ -75,8 +75,8 @@ describe API::Ci do context 'when tags are provided' do it 'creates runner' do post api('/runners'), token: registration_token, - run_untagged: false, - tag_list: ['tag'] + run_untagged: false, + tag_list: ['tag'] expect(response).to have_http_status 201 expect(Ci::Runner.first.run_untagged).to be false @@ -87,7 +87,7 @@ describe API::Ci do context 'when tags are not provided' do it 'returns 404 error' do post api('/runners'), token: registration_token, - run_untagged: false + run_untagged: false expect(response).to have_http_status 404 end @@ -97,7 +97,7 @@ describe API::Ci do context 'when option for locking Runner is provided' do it 'creates runner' do post api('/runners'), token: registration_token, - locked: true + locked: true expect(response).to have_http_status 201 expect(Ci::Runner.first.locked).to be true @@ -110,7 +110,7 @@ describe API::Ci do it %q(updates provided Runner's parameter) do post api('/runners'), token: registration_token, - info: {param => value} + info: { param => value } expect(response).to have_http_status 201 expect(Ci::Runner.first.read_attribute(param.to_sym)).to eq(value) @@ -145,4 +145,4 @@ describe API::Ci do end end end -end \ No newline at end of file +end