diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2017-02-21 16:50:21 +0000 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2017-02-21 16:50:21 +0000 |
commit | 4ad2fbc35ced9d42186606e426b66857f9a7d54f (patch) | |
tree | 1fe4d2e49b42b066169534f26685c2241052930f /spec/features | |
parent | 3f7c1686790b3c54925be0aabc74c0d22b09e752 (diff) | |
download | gitlab-ce-4ad2fbc35ced9d42186606e426b66857f9a7d54f.tar.gz |
Fix broken test
Diffstat (limited to 'spec/features')
-rw-r--r-- | spec/features/projects/pipelines/pipeline_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/projects/pipelines/pipeline_spec.rb b/spec/features/projects/pipelines/pipeline_spec.rb index 9cae000388f..9f06e52ab55 100644 --- a/spec/features/projects/pipelines/pipeline_spec.rb +++ b/spec/features/projects/pipelines/pipeline_spec.rb @@ -226,7 +226,7 @@ describe 'Pipeline', :feature, :js do it { expect(page).not_to have_content('retried') } context 'when retrying' do - before { find('js-retry-button').trigger('click') } + before { find('.js-retry-button').trigger('click') } it { expect(page).not_to have_content('Retry') } it { expect(page).to have_selector('.retried') } |