diff --git a/spec/unit/type/cinder_api_uwsgi_config_spec.rb b/spec/unit/type/cinder_api_uwsgi_config_spec.rb index 29dc2791..61ca2cb9 100644 --- a/spec/unit/type/cinder_api_uwsgi_config_spec.rb +++ b/spec/unit/type/cinder_api_uwsgi_config_spec.rb @@ -33,7 +33,7 @@ describe 'Puppet::Type.type(:cinder_api_uwsgi_config)' do expect(@cinder_api_uwsgi_config[:value]).to eq('bar') end - it 'should not accept a value with whitespace' do + it 'should accept a value with whitespace' do @cinder_api_uwsgi_config[:value] = 'b ar' expect(@cinder_api_uwsgi_config[:value]).to eq('b ar') end diff --git a/spec/unit/type/cinder_config_spec.rb b/spec/unit/type/cinder_config_spec.rb index 54fb7526..c27393ba 100644 --- a/spec/unit/type/cinder_config_spec.rb +++ b/spec/unit/type/cinder_config_spec.rb @@ -33,7 +33,7 @@ describe 'Puppet::Type.type(:cinder_config)' do expect(@cinder_config[:value]).to eq(['bar']) end - it 'should not accept a value with whitespace' do + it 'should accept a value with whitespace' do @cinder_config[:value] = 'b ar' expect(@cinder_config[:value]).to eq(['b ar']) end diff --git a/spec/unit/type/cinder_rootwrap_config_spec.rb b/spec/unit/type/cinder_rootwrap_config_spec.rb index fb479c65..bd457029 100644 --- a/spec/unit/type/cinder_rootwrap_config_spec.rb +++ b/spec/unit/type/cinder_rootwrap_config_spec.rb @@ -33,7 +33,7 @@ describe 'Puppet::Type.type(:cinder_rootwrap_config)' do expect(@cinder_rootwrap_config[:value]).to eq('bar') end - it 'should not accept a value with whitespace' do + it 'should accept a value with whitespace' do @cinder_rootwrap_config[:value] = 'b ar' expect(@cinder_rootwrap_config[:value]).to eq('b ar') end