summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-10-12 23:59:21 +0200
committerKamil Trzcinski <ayufan@ayufan.eu>2015-10-12 23:59:21 +0200
commit4bf69b0bd9a27e675c98eee998f24c0122030731 (patch)
tree3236433e0672098035af5e96c45c42c5a5ac18cd
parent766da5fa7bdded8a333a758d7b172533ade5a934 (diff)
downloadgitlab-ce-4bf69b0bd9a27e675c98eee998f24c0122030731.tar.gz
Fix feature tests
-rw-r--r--app/views/projects/commit/ci.html.haml2
-rw-r--r--features/steps/project/commits/commits.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/commit/ci.html.haml b/app/views/projects/commit/ci.html.haml
index 585f012fe04..4a1ef378a30 100644
--- a/app/views/projects/commit/ci.html.haml
+++ b/app/views/projects/commit/ci.html.haml
@@ -21,7 +21,7 @@
\.gitlab-ci.yml not found in this commit
.gray-content-block.second-block
- Latest
+ Latest builds
- if @ci_commit.duration > 0
%small.pull-right
%i.fa.fa-time
diff --git a/features/steps/project/commits/commits.rb b/features/steps/project/commits/commits.rb
index ae5f90004e6..a3cb83880e3 100644
--- a/features/steps/project/commits/commits.rb
+++ b/features/steps/project/commits/commits.rb
@@ -118,6 +118,6 @@ class Spinach::Features::ProjectCommits < Spinach::FeatureSteps
step 'I see builds list' do
expect(page).to have_content "build: pending"
- expect(page).to have_content "Builds for master"
+ expect(page).to have_content "Latest builds"
end
end