Skip to content

Commit 95dcd93

Browse files
committed
Add https:// to AnsibleTower::Provider factory url
1 parent f25fb94 commit 95dcd93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/factories/provider.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
factory :provider_openstack, :class => "ManageIQ::Providers::Openstack::Provider", :parent => :provider
1818
factory(:provider_ansible_tower, :class => "ManageIQ::Providers::AnsibleTower::Provider", :parent => :provider) do
19-
sequence(:url) { |n| "example_#{seq_padded_for_sorting(n)}.com" }
19+
sequence(:url) { |n| "https://example_#{seq_padded_for_sorting(n)}.com" }
2020
trait(:with_authentication) do
2121
after(:create) do |x|
2222
x.authentications << FactoryBot.create(:authentication)

0 commit comments

Comments
 (0)