From 75723ff7c4b369f67f87b08e8682f6d406ef0e56 Mon Sep 17 00:00:00 2001 From: bodepd Date: Tue, 25 Jun 2013 12:24:06 -0700 Subject: [PATCH] Fix failing tests This commit fixes tests that were failing as a result of: https://review.openstack.org/#/c/34046/ This updates the cinder defaults to fix the tests. Change-Id: I9def5d2eb2b8229fedabe92f6bdceefbf4d8fcf3 --- spec/classes/openstack_cinder_all_spec.rb | 2 +- spec/classes/openstack_cinder_controller_spec.rb | 2 +- spec/classes/openstack_cinder_storage_spec.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/classes/openstack_cinder_all_spec.rb b/spec/classes/openstack_cinder_all_spec.rb index 80a36dd..7b49cb6 100644 --- a/spec/classes/openstack_cinder_all_spec.rb +++ b/spec/classes/openstack_cinder_all_spec.rb @@ -22,7 +22,7 @@ describe 'openstack::cinder::all' do :rabbit_password => params[:rabbit_password], :rabbit_host => '127.0.0.1', :rabbit_port => '5672', - :rabbit_hosts => nil, + :rabbit_hosts => false, :rabbit_virtual_host => '/', :package_ensure => 'present', :api_paste_config => '/etc/cinder/api-paste.ini', diff --git a/spec/classes/openstack_cinder_controller_spec.rb b/spec/classes/openstack_cinder_controller_spec.rb index a04b985..42a91da 100644 --- a/spec/classes/openstack_cinder_controller_spec.rb +++ b/spec/classes/openstack_cinder_controller_spec.rb @@ -22,7 +22,7 @@ describe 'openstack::cinder::controller' do :rabbit_password => params[:rabbit_password], :rabbit_host => '127.0.0.1', :rabbit_port => '5672', - :rabbit_hosts => nil, + :rabbit_hosts => false, :rabbit_virtual_host => '/', :package_ensure => 'present', :api_paste_config => '/etc/cinder/api-paste.ini', diff --git a/spec/classes/openstack_cinder_storage_spec.rb b/spec/classes/openstack_cinder_storage_spec.rb index 28f1ec7..eee80e9 100644 --- a/spec/classes/openstack_cinder_storage_spec.rb +++ b/spec/classes/openstack_cinder_storage_spec.rb @@ -20,7 +20,7 @@ describe 'openstack::cinder::storage' do :rabbit_password => params[:rabbit_password], :rabbit_host => '127.0.0.1', :rabbit_port => '5672', - :rabbit_hosts => nil, + :rabbit_hosts => false, :rabbit_virtual_host => '/', :package_ensure => 'present', :api_paste_config => '/etc/cinder/api-paste.ini',