Skip to content

Commit

Permalink
don't add a trailing slash to pulpcore_url in cli tests
Browse files Browse the repository at this point in the history
new cli is more strict and doesn't accept this
  • Loading branch information
evgeni authored and ekohl committed May 29, 2024
1 parent 80016eb commit ef256e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/acceptance/cli_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<<-PUPPET
include pulpcore
class { 'pulpcore::cli':
pulpcore_url => "https://${facts['networking']['fqdn']}/",
pulpcore_url => "https://${facts['networking']['fqdn']}",
cert => "/etc/pulpcore-certs/client-cert.pem",
key => "/etc/pulpcore-certs/client-key.pem",
}
Expand Down Expand Up @@ -58,7 +58,7 @@ class { 'pulpcore::cli':
let(:manifest) do
<<-PUPPET
class { 'pulpcore::cli':
pulpcore_url => "https://${facts['networking']['fqdn']}/",
pulpcore_url => "https://${facts['networking']['fqdn']}",
username => "admin",
password => "changeme",
}
Expand Down

0 comments on commit ef256e0

Please sign in to comment.