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: I78750bdfd66785f822a37d724cd4f50eca8e0bab
expect(@ceilometer_config[:value]).to eq(['bar'])
end
- it 'should not accept a value with whitespace' do
+ it 'should accept a value with whitespace' do
@ceilometer_config[:value] = 'b ar'
expect(@ceilometer_config[:value]).to eq(['b ar'])
end
expect(@ceilometer_rootwrap_config[:value]).to eq('bar')
end
- it 'should not accept a value with whitespace' do
+ it 'should accept a value with whitespace' do
@ceilometer_rootwrap_config[:value] = 'b ar'
expect(@ceilometer_rootwrap_config[:value]).to eq('b ar')
end