Remove rpc_backend check for amqp

I7ccd995ef01c2d54427684718adba054260fdd52 removed the rpc_backend
declaration for amqp so we need to stop checking for it in the unit
tests.

Change-Id: I45209060dc2726cdb7e69450126d7ab242aaddf3
This commit is contained in:
Alex Schultz 2017-02-28 08:11:24 -07:00
parent e50308cc6d
commit f394d4e298
1 changed files with 0 additions and 2 deletions

View File

@ -224,7 +224,6 @@ describe 'aodh' do
context 'with default parameters' do
it 'configures amqp' do
is_expected.to contain_aodh_config('DEFAULT/rpc_backend').with_value('amqp')
is_expected.to contain_aodh_config('oslo_messaging_amqp/server_request_prefix').with_value('<SERVICE DEFAULT>')
is_expected.to contain_aodh_config('oslo_messaging_amqp/broadcast_prefix').with_value('<SERVICE DEFAULT>')
is_expected.to contain_aodh_config('oslo_messaging_amqp/group_request_prefix').with_value('<SERVICE DEFAULT>')
@ -260,7 +259,6 @@ describe 'aodh' do
end
it 'configures amqp' do
is_expected.to contain_aodh_config('DEFAULT/rpc_backend').with_value('amqp')
is_expected.to contain_aodh_config('DEFAULT/transport_url').with_value('amqp://amqp_user:password@localhost:5672')
is_expected.to contain_aodh_config('oslo_messaging_amqp/idle_timeout').with_value('60')
is_expected.to contain_aodh_config('oslo_messaging_amqp/trace').with_value('true')