mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
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:
parent
b7c10649ca
commit
e3d96ee91f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue