summaryrefslogtreecommitdiff
path: root/spec/features/projects/show
diff options
context:
space:
mode:
authorScott Hampton <shampton@gitlab.com>2019-08-23 21:28:46 +0000
committerMayra Cabrera <mcabrera@gitlab.com>2019-08-23 21:28:46 +0000
commitf093ceb4a0b15420cfe64fa9d97e73531b5fb35c (patch)
tree06df7eaa8b947b6fb9a06eb25d5e7be82e351287 /spec/features/projects/show
parent1d462d23a94e6ee8a0151444a01ea5858350886b (diff)
downloadgitlab-ce-f093ceb4a0b15420cfe64fa9d97e73531b5fb35c.tar.gz
Change misleading pipeline status tooltip
Some pipeline status icon tooltips were showing "Commit: ..." which customers found to be misleading since it was not the commit that was failing but the pipeline. We are changing all status icon tooltips to say "Pipeline: ..." instead of "Commit: ..." now.
Diffstat (limited to 'spec/features/projects/show')
-rw-r--r--spec/features/projects/show/user_sees_last_commit_ci_status_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/projects/show/user_sees_last_commit_ci_status_spec.rb b/spec/features/projects/show/user_sees_last_commit_ci_status_spec.rb
index a1cad261875..fdc238d55cf 100644
--- a/spec/features/projects/show/user_sees_last_commit_ci_status_spec.rb
+++ b/spec/features/projects/show/user_sees_last_commit_ci_status_spec.rb
@@ -18,7 +18,7 @@ describe 'Projects > Show > User sees last commit CI status' do
page.within '.blob-commit-info' do
expect(page).to have_content(project.commit.sha[0..6])
- expect(page).to have_link('Commit: skipped')
+ expect(page).to have_link('Pipeline: skipped')
end
end
end