Revert back to using include matcher

A regression was fixed in Rspec so the include matcher once again
works as expected.
This commit is contained in:
Jordan Owens 2018-10-10 12:43:43 -04:00
parent b7c10649ca
commit e3d96ee91f
1 changed files with 1 additions and 1 deletions

View File

@ -559,7 +559,7 @@ describe Sinatra::Cookies do
it 'checks response cookies' do
jar = cookies
jar['foo'] = 'bar'
expect(jar).to be_include(:foo)
expect(jar).to include(:foo)
end
it 'does not use deleted cookies' do