Commit f8d6e81b authored by Shinya Maeda's avatar Shinya Maeda

Fix rubocop anger

parent 61729204
...@@ -2,7 +2,7 @@ class BuildSerializer < BaseSerializer ...@@ -2,7 +2,7 @@ class BuildSerializer < BaseSerializer
entity BuildEntity entity BuildEntity
def with_status def with_status
tap { @status_only = {only: [{details: [:status]}]} } tap { @status_only = { only: [{ details: [:status] }] } }
end end
def represent(resource, opts = {}) def represent(resource, opts = {})
......
...@@ -12,7 +12,7 @@ class PipelineSerializer < BaseSerializer ...@@ -12,7 +12,7 @@ class PipelineSerializer < BaseSerializer
end end
def with_status def with_status
tap { @status_only = {only: [{details: [:status]}]} } tap { @status_only = { only: [{ details: [:status] }] } }
end end
def represent(resource, opts = {}) def represent(resource, opts = {})
......
...@@ -16,9 +16,9 @@ describe Projects::BuildsController do ...@@ -16,9 +16,9 @@ describe Projects::BuildsController do
pipeline = create(:ci_pipeline, project: project) pipeline = create(:ci_pipeline, project: project)
build = create(:ci_build, pipeline: pipeline, status: 'success') build = create(:ci_build, pipeline: pipeline, status: 'success')
get :status, namespace_id: project.namespace, get :status, namespace_id: project.namespace,
project_id: project, project_id: project,
id: build.id, id: build.id,
format: :json format: :json
end end
it 'returns pipeline status via BuildSerializer' do it 'returns pipeline status via BuildSerializer' do
......
...@@ -1183,13 +1183,13 @@ describe Projects::MergeRequestsController do ...@@ -1183,13 +1183,13 @@ describe Projects::MergeRequestsController do
context 'when accessing status' do context 'when accessing status' do
before do before do
create(:ci_pipeline, project: merge_request.source_project, create(:ci_pipeline, project: merge_request.source_project,
ref: merge_request.source_branch, ref: merge_request.source_branch,
sha: merge_request.diff_head_sha, sha: merge_request.diff_head_sha,
status: 'success') status: 'success')
get :status, namespace_id: project.namespace, get :status, namespace_id: project.namespace,
project_id: project, project_id: project,
id: merge_request.iid, id: merge_request.iid,
format: :json format: :json
end end
it 'returns pipeline status via PipelineSerializer' do it 'returns pipeline status via PipelineSerializer' do
......
...@@ -75,9 +75,9 @@ describe Projects::PipelinesController do ...@@ -75,9 +75,9 @@ describe Projects::PipelinesController do
before do before do
pipeline = create(:ci_pipeline, project: project, status: 'success') pipeline = create(:ci_pipeline, project: project, status: 'success')
get :status, namespace_id: project.namespace, get :status, namespace_id: project.namespace,
project_id: project, project_id: project,
id: pipeline.id, id: pipeline.id,
format: :json format: :json
end end
it 'returns pipeline status via PipelineSerializer' do it 'returns pipeline status via PipelineSerializer' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment