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: Ie9c0a6f495aeb17c7137ba78efbb1437ddd309a0
This commit is contained in:
Takashi Kajinami 2022-07-15 11:55:28 +09:00
parent d6b34a0e44
commit 63e7f756ff
1 changed files with 1 additions and 1 deletions

View File

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