From ac9a56e841bb7a552857bba606f7728ad27852f7 Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Sun, 24 Feb 2019 13:03:46 +0100 Subject: [PATCH] Change keystone v2.0 url to v3 Change-Id: I91decea5388afce37b276c63ae3cb43cae768070 --- spec/classes/heat_init_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/classes/heat_init_spec.rb b/spec/classes/heat_init_spec.rb index c8cb9a1d..bd8311e7 100644 --- a/spec/classes/heat_init_spec.rb +++ b/spec/classes/heat_init_spec.rb @@ -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