Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/projects/settings/integration_settings_spec.rb')
-rw-r--r--spec/features/projects/settings/integration_settings_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/features/projects/settings/integration_settings_spec.rb b/spec/features/projects/settings/integration_settings_spec.rb
index 26ea4ec5944..de987b879eb 100644
--- a/spec/features/projects/settings/integration_settings_spec.rb
+++ b/spec/features/projects/settings/integration_settings_spec.rb
@@ -89,12 +89,12 @@ describe 'Projects > Settings > Integration settings' do
expect(current_path).to eq(integrations_path)
end
- context 'remove existing webhook' do
+ context 'delete existing webhook' do
it 'from webhooks list page' do
hook
visit integrations_path
- expect { click_link 'Remove' }.to change(ProjectHook, :count).by(-1)
+ expect { click_link 'Delete' }.to change(ProjectHook, :count).by(-1)
end
it 'from webhook edit page' do
@@ -102,7 +102,7 @@ describe 'Projects > Settings > Integration settings' do
visit integrations_path
click_link 'Edit'
- expect { click_link 'Remove' }.to change(ProjectHook, :count).by(-1)
+ expect { click_link 'Delete' }.to change(ProjectHook, :count).by(-1)
end
end
end