Merge "Fix keystone URLs in noop tests"

This commit is contained in:
Jenkins 2016-03-17 13:55:08 +00:00 committed by Gerrit Code Review
commit 8ae2d6c485
2 changed files with 4 additions and 4 deletions

View File

@ -83,7 +83,7 @@ describe manifest do
it {
if Noop.hiera('external_lb', false)
url = internal_url
url = "#{internal_url}/v3"
provider = 'http'
else
url = 'http://' + Noop.hiera('service_endpoint').to_s + ':10000/;csv'
@ -97,7 +97,7 @@ describe manifest do
it {
if Noop.hiera('external_lb', false)
url = admin_url
url = "#{admin_url}/v3"
provider = 'http'
else
url = 'http://' + Noop.hiera('service_endpoint').to_s + ':10000/;csv'

View File

@ -155,7 +155,7 @@ describe manifest do
"Class[heat::keystone::domain]")
end
if Noop.hiera('external_lb', false)
url = "#{admin_auth_protocol}://#{admin_auth_address}:35357/"
url = "#{admin_auth_protocol}://#{admin_auth_address}:35357/v3"
provider = 'http'
else
url = 'http://' + Noop.hiera('service_endpoint').to_s + ':10000/;csv'