summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorubudzisz <ubudzisz@gmail.com>2016-07-14 14:51:10 +0200
committerubudzisz <ubudzisz@gmail.com>2016-07-18 12:39:24 +0200
commit7d74f2f00f65f1fd9fc53e631f6640cf6a713d34 (patch)
tree896cd7ba14d3d7ea3bda5a72f28e608964ce4c23
parent679f2ac45552d027159291ef3bb008596268948e (diff)
downloadgitlab-ce-7d74f2f00f65f1fd9fc53e631f6640cf6a713d34.tar.gz
add test to view
repair rubocop test and update CHANGELOG repair rubocop test repair rubocop repair rubocop repair rubocop
-rw-r--r--CHANGELOG1
-rw-r--r--spec/views/projects/builds/show.html.haml_spec.rb1
2 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e19b835504a..28f7fc005fc 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -130,6 +130,7 @@ v 8.9.7 (unreleased)
v 8.9.6
- Fix importing of events under notes for GitLab projects
- Render only commit message title in builds
+ - Render only commit message title in builds (Katarzyna Kobierska Ula Budziszewska)
v 8.9.5
- Add more debug info to import/export and memory killer. !5108
diff --git a/spec/views/projects/builds/show.html.haml_spec.rb b/spec/views/projects/builds/show.html.haml_spec.rb
index 61004d0fed7..f7d5d8b020b 100644
--- a/spec/views/projects/builds/show.html.haml_spec.rb
+++ b/spec/views/projects/builds/show.html.haml_spec.rb
@@ -10,6 +10,7 @@ describe 'projects/builds/show' do
before do
assign(:build, build)
assign(:project, project)
+ assign(:commit_title, build.project.commit.title)
allow(view).to receive(:can?).and_return(true)
end