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: I2f840172b22928d136808568badd5135fc2b3fe3
This commit is contained in:
Takashi Kajinami 2022-07-15 11:56:42 +09:00
parent 34fe3ab096
commit f49cd06eee
1 changed files with 1 additions and 1 deletions

View File

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