Merge "Fix wrong test description"

This commit is contained in:
Zuul 2022-07-15 03:02:14 +00:00 committed by Gerrit Code Review
commit a20aca6eca
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ describe 'Puppet::Type.type(:cloudkitty_api_uwsgi_config)' do
expect(@cloudkitty_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
@cloudkitty_api_uwsgi_config[:value] = 'b ar'
expect(@cloudkitty_api_uwsgi_config[:value]).to eq('b ar')
end

View File

@ -32,7 +32,7 @@ describe 'Puppet::Type.type(:cloudkitty_config)' do
expect(@cloudkitty_config[:value]).to eq(['bar'])
end
it 'should not accept a value with whitespace' do
it 'should accept a value with whitespace' do
@cloudkitty_config[:value] = 'b ar'
expect(@cloudkitty_config[:value]).to eq(['b ar'])
end