Merge "Fix wrong test description"

This commit is contained in:
Zuul 2022-07-14 14:02:53 +00:00 committed by Gerrit Code Review
commit 50ede5b587
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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