Merge "Change keystone v2.0 url to v3"

This commit is contained in:
Zuul 2019-02-25 19:17:36 +00:00 committed by Gerrit Code Review
commit 39fd5ff96d
1 changed files with 2 additions and 2 deletions

View File

@ -285,12 +285,12 @@ describe 'heat' do
shared_examples_for 'with ec2authtoken auth uri set' do
before do
params.merge!(
:keystone_ec2_uri => 'http://1.2.3.4:5000/v2.0/ec2tokens'
:keystone_ec2_uri => 'http://1.2.3.4:5000/v3/ec2tokens'
)
end
it do
is_expected.to contain_heat_config('ec2authtoken/auth_uri').with_value('http://1.2.3.4:5000/v2.0/ec2tokens')
is_expected.to contain_heat_config('ec2authtoken/auth_uri').with_value('http://1.2.3.4:5000/v3/ec2tokens')
end
end