Commit 00d5f206 authored by Stan Hu's avatar Stan Hu

Merge branch 'ce-to-ee-2018-04-22' into 'master'

CE upstream - 2018-04-22 18:22 UTC

See merge request gitlab-org/gitlab-ee!5446
parents 54d9b138 ebe8021a
......@@ -78,8 +78,6 @@ class Projects::JobsController < Projects::ApplicationController
result.merge!(trace.to_h)
end
result[:html] = result[:html].presence || 'No job log'
render json: result
end
end
......
---
title: Removes 'No Job log' message from build trace
merge_request: 18523
author:
type: fixed
......@@ -190,10 +190,7 @@ describe Projects::JobsController do
expect(response).to have_gitlab_http_status(:ok)
expect(json_response['id']).to eq job.id
expect(json_response['status']).to eq job.status
end
it 'returns no job log message' do
expect(json_response['html']).to eq('No job log')
expect(json_response['html']).to be_nil
end
end
......
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