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:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-16 12:08:10 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-16 12:08:10 +0300
commit13867d66e92c2fd8962a126db4fbdc32891343c9 (patch)
tree580a1baf1cdd3283ede126ee510ecf1d3562a471 /spec/features/projects/settings
parent83758a4e5fcfec056b36a4b56fb22c8a915753cc (diff)
Add latest changes from gitlab-org/gitlab@masterogolowinski-master-patch-27476
Diffstat (limited to 'spec/features/projects/settings')
-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