diff options
author | Rémy Coutable <remy@rymai.me> | 2018-05-24 09:57:54 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-05-24 10:14:01 +0200 |
commit | d50a80a282b2ca145841774f4be154a977cccfd8 (patch) | |
tree | b8b44017967ecb99196ec5cfcf4b827af0af1b8a /spec/views/admin | |
parent | c52db71e36ee70c4c5be80b029cf4362f28e3667 (diff) | |
download | gitlab-ce-d50a80a282b2ca145841774f4be154a977cccfd8.tar.gz |
Replace Gitlab::REVISION with Gitlab.revision and handle installations without a .git directory46600-fix-gitlab-revision-when-not-in-git-repo
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'spec/views/admin')
-rw-r--r-- | spec/views/admin/dashboard/index.html.haml_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/views/admin/dashboard/index.html.haml_spec.rb b/spec/views/admin/dashboard/index.html.haml_spec.rb index 099baacf019..59c777ea338 100644 --- a/spec/views/admin/dashboard/index.html.haml_spec.rb +++ b/spec/views/admin/dashboard/index.html.haml_spec.rb @@ -22,6 +22,6 @@ describe 'admin/dashboard/index.html.haml' do it "includes revision of GitLab" do render - expect(rendered).to have_content "#{Gitlab::VERSION} (#{Gitlab::REVISION})" + expect(rendered).to have_content "#{Gitlab::VERSION} (#{Gitlab.revision})" end end |