Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean McGivern <sean@mcgivern.me.uk>2017-12-14 13:32:30 +0300
committerSean McGivern <sean@mcgivern.me.uk>2017-12-14 13:32:30 +0300
commitc74e556d89bb74fa09e38b8680981a466c88fd20 (patch)
treed38d0401526299925a70a1bb0cb0ff9ca7349e28 /spec/features
parent5478fe4288b6f7d4e29caa643a12248376a3e4b9 (diff)
parentc2dc6965bbda0a705dae8870bfc3afca8dd75bd5 (diff)
Merge branch '25317-prioritize-author-date-over-commit' into 'master'
Use author info on commits list page rather than most recent commit date Closes #25317 See merge request gitlab-org/gitlab-ce!15868
Diffstat (limited to 'spec/features')
-rw-r--r--spec/features/commits_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/commits_spec.rb b/spec/features/commits_spec.rb
index c870910c8ea..77dcdf89f37 100644
--- a/spec/features/commits_spec.rb
+++ b/spec/features/commits_spec.rb
@@ -197,7 +197,7 @@ describe 'Commits' do
commits = project.repository.commits(branch_name)
commits.each do |commit|
- expect(page).to have_content("committed #{commit.committed_date.strftime("%b %d, %Y")}")
+ expect(page).to have_content("authored #{commit.authored_date.strftime("%b %d, %Y")}")
end
end