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/integrations/user_activates_issue_tracker_spec.rb')
-rw-r--r--spec/features/projects/integrations/user_activates_issue_tracker_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/features/projects/integrations/user_activates_issue_tracker_spec.rb b/spec/features/projects/integrations/user_activates_issue_tracker_spec.rb
index 944a2c164d5..02cec948127 100644
--- a/spec/features/projects/integrations/user_activates_issue_tracker_spec.rb
+++ b/spec/features/projects/integrations/user_activates_issue_tracker_spec.rb
@@ -10,10 +10,10 @@ RSpec.describe 'User activates issue tracker', :js, feature_category: :integrati
def fill_form(disable: false, skip_new_issue_url: false)
click_active_checkbox if disable
- fill_in 'service_project_url', with: url
- fill_in 'service_issues_url', with: "#{url}/:id"
+ fill_in 'service-project_url', with: url
+ fill_in 'service-issues_url', with: "#{url}/:id"
- fill_in 'service_new_issue_url', with: url unless skip_new_issue_url
+ fill_in 'service-new_issue_url', with: url unless skip_new_issue_url
end
shared_examples 'external issue tracker activation' do |tracker:, skip_new_issue_url: false, skip_test: false|