summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-12-13 09:09:51 -0700
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-12-13 09:09:51 -0700
commitc2dc6965bbda0a705dae8870bfc3afca8dd75bd5 (patch)
treedc88efef2887191a6c9fd435a9441b6a1bfd77c3
parentc5503a99bc2cd5742800377e36ed0e564a0170d3 (diff)
downloadgitlab-ce-25317-prioritize-author-date-over-commit.tar.gz
-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