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: I765e631ef6127a98d49059cd47087c70e6490dc5
This commit is contained in:
Takashi Kajinami 2022-07-15 11:52:42 +09:00
parent 486b37d6f5
commit 242a7c53d3
2 changed files with 2 additions and 2 deletions

View File

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

View File

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