diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-06-01 13:10:00 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-06-01 13:10:00 +0200 |
commit | 57992f3d03115e391322f53839f5121e7a740120 (patch) | |
tree | b39c1795b79f791b6f5520d77ce0c1f3e14e4de8 /spec | |
parent | 99708dcede3305098b2a6f73d70804932d39012e (diff) | |
download | gitlab-ce-57992f3d03115e391322f53839f5121e7a740120.tar.gz |
Fix rubocop offensesfix-cancelable-retryable
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/pipelines_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/pipelines_spec.rb b/spec/features/pipelines_spec.rb index 55754008d8a..acd6fb3538c 100644 --- a/spec/features/pipelines_spec.rb +++ b/spec/features/pipelines_spec.rb @@ -69,7 +69,7 @@ describe "Pipelines" do before { visit namespace_project_pipelines_path(project.namespace, project) } it 'not be cancelable' do - expect(page).to_not have_link('Cancel') + expect(page).not_to have_link('Cancel') end it 'pipeline is running' do @@ -83,7 +83,7 @@ describe "Pipelines" do before { visit namespace_project_pipelines_path(project.namespace, project) } it 'not be retryable' do - expect(page).to_not have_link('Retry') + expect(page).not_to have_link('Retry') end it 'pipeline is failed' do |