Fix wrong test description

The value with a white space should be accepted instead of being
rejected. This change fixes the wrong test case description and makes
sure the description explains what is actually tested.

Change-Id: I0f7853c62b88ea423590f5c75eb47f7597f15a01
This commit is contained in:
Takashi Kajinami 2022-07-11 23:25:21 +09:00
parent 3b1ecbed5c
commit b8c8d1f245
2 changed files with 2 additions and 2 deletions

View File

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

View File

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