[spec] Fix syntax error with puppet2.7 and ruby1.8.7

Refs: #205
This commit is contained in:
Sebastien Badia
2014-02-19 12:16:49 +01:00
parent fb582b9f58
commit f1d3323b74
3 changed files with 3 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ describe 'cloud::cache' do
it 'configure memcached with some params' do it 'configure memcached with some params' do
should contain_class('memcached').with( should contain_class('memcached').with(
:listen_ip => '10.0.0.1', :listen_ip => '10.0.0.1',
:max_memory => '60%', :max_memory => '60%'
) )
end end
end end

View File

@@ -219,7 +219,7 @@ describe 'cloud::compute::hypervisor' do
should contain_class('nova::compute::libvirt').with( should contain_class('nova::compute::libvirt').with(
:libvirt_type => 'kvm', :libvirt_type => 'kvm',
:vncserver_listen => '0.0.0.0', :vncserver_listen => '0.0.0.0',
:migration_support => true, :migration_support => true
) )
end end

View File

@@ -102,7 +102,7 @@ describe 'cloud::telemetry::server' do
should contain_class('ceilometer::expirer').with( should contain_class('ceilometer::expirer').with(
:time_to_live => '2592000', :time_to_live => '2592000',
:minute => '0', :minute => '0',
:hour => '0', :hour => '0'
) )
end end