diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-02-25 17:17:24 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-02-25 18:14:29 +0100 |
commit | 4658e554b7129c44221a73fe8ec3b73b4b9b8b24 (patch) | |
tree | c6365ad287259f42f07323e6079d18da8d074daa /spec/mailers | |
parent | f0b78a852933a54173bb9b4ceddba44b52dc3cfa (diff) | |
download | gitlab-ce-4658e554b7129c44221a73fe8ec3b73b4b9b8b24.tar.gz |
Fix EmailsOnPush comparison link to include first commit.
Diffstat (limited to 'spec/mailers')
-rw-r--r-- | spec/mailers/notify_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/mailers/notify_spec.rb b/spec/mailers/notify_spec.rb index 534ab05942c..4090fa46205 100644 --- a/spec/mailers/notify_spec.rb +++ b/spec/mailers/notify_spec.rb @@ -568,7 +568,7 @@ describe Notify do let(:user) { create(:user) } let(:compare) { Gitlab::Git::Compare.new(project.repository.raw_repository, sample_image_commit.id, sample_commit.id) } let(:commits) { Commit.decorate(compare.commits) } - let(:diff_path) { namespace_project_compare_path(project.namespace, project, from: commits.first, to: commits.last) } + let(:diff_path) { namespace_project_compare_path(project.namespace, project, from: Commit.new(compare.base), to: Commit.new(compare.head)) } let(:send_from_committer_email) { false } subject { Notify.repository_push_email(project.id, 'devs@company.name', user.id, 'master', compare, false, send_from_committer_email) } |