Merge pull request #240 from bodepd/fix_failing_tests

fix rspec test failures
This commit is contained in:
Dan Bode 2013-03-03 21:00:31 -08:00
commit a1ed38b1eb
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ describe 'nova::compute' do
end
it { should contain_nova_config('vnc_enabled').with_value('false') }
it { should contain_nova_config('vncserver_proxyclient_address').with('127.0.0.1')}
it { should contain_nova_config('vncserver_proxyclient_address').with_value('127.0.0.1')}
it { should_not contain_nova_config('novncproxy_base_url') }
end

View File

@ -48,6 +48,6 @@ describe 'nova::objectstore' do
'ensure' => 'stopped',
'enable' => false
)}
it { should contain_package('nova-objectstore').with('openstack-nova-objectstore') }
it { should contain_package('nova-objectstore').with_name('openstack-nova-objectstore') }
end
end