summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-06-01 13:10:00 +0200
committerKamil Trzcinski <ayufan@ayufan.eu>2016-06-01 13:10:00 +0200
commit57992f3d03115e391322f53839f5121e7a740120 (patch)
treeb39c1795b79f791b6f5520d77ce0c1f3e14e4de8
parent99708dcede3305098b2a6f73d70804932d39012e (diff)
downloadgitlab-ce-fix-cancelable-retryable.tar.gz
Fix rubocop offensesfix-cancelable-retryable
-rw-r--r--spec/features/pipelines_spec.rb4
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