diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-05-16 18:13:44 -0500 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-05-16 18:13:44 -0500 |
commit | bfc6799c9367a0bb249e1d4eeece5485e16ec6a5 (patch) | |
tree | b518e672eb1dd6dae260fa5fb63dfa06786750ea /features | |
parent | d0eb9438e9b258d2fa399a7e54bdfd332e307252 (diff) | |
download | gitlab-ce-bfc6799c9367a0bb249e1d4eeece5485e16ec6a5.tar.gz |
Fix spinach tests
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/project/commits/commits.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/features/steps/project/commits/commits.rb b/features/steps/project/commits/commits.rb index 93c37bf507f..f33f37be951 100644 --- a/features/steps/project/commits/commits.rb +++ b/features/steps/project/commits/commits.rb @@ -173,7 +173,7 @@ class Spinach::Features::ProjectCommits < Spinach::FeatureSteps end step 'I see commit ci info' do - expect(page).to have_content "build: pending" + expect(page).to have_content "Builds for 1 pipeline pending" end step 'I click status link' do @@ -181,7 +181,7 @@ class Spinach::Features::ProjectCommits < Spinach::FeatureSteps end step 'I see builds list' do - expect(page).to have_content "build: pending" + expect(page).to have_content "Builds for 1 pipeline pending" expect(page).to have_content "1 build" end |