summaryrefslogtreecommitdiff
path: root/spec/support/shared_contexts/project_service_jira_context.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/shared_contexts/project_service_jira_context.rb')
-rw-r--r--spec/support/shared_contexts/project_service_jira_context.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/spec/support/shared_contexts/project_service_jira_context.rb b/spec/support/shared_contexts/project_service_jira_context.rb
index 8e01de70846..54bb9fd108e 100644
--- a/spec/support/shared_contexts/project_service_jira_context.rb
+++ b/spec/support/shared_contexts/project_service_jira_context.rb
@@ -1,8 +1,8 @@
# frozen_string_literal: true
RSpec.shared_context 'project service Jira context' do
- let(:url) { 'http://jira.example.com' }
- let(:test_url) { 'http://jira.example.com/rest/api/2/serverInfo' }
+ let(:url) { 'https://jira.example.com' }
+ let(:test_url) { 'https://jira.example.com/rest/api/2/serverInfo' }
def fill_form(disable: false)
click_active_checkbox if disable
@@ -10,6 +10,5 @@ RSpec.shared_context 'project service Jira context' do
fill_in 'service_url', with: url
fill_in 'service_username', with: 'username'
fill_in 'service_password', with: 'password'
- fill_in 'service_jira_issue_transition_id', with: '25'
end
end