spec/vcr/request_ignorer_spec.rb in vcr-2.7.0 vs spec/vcr/request_ignorer_spec.rb in vcr-2.8.0

- old
+ new

@@ -56,14 +56,14 @@ URI(request.uri).port == 5 end end it 'ignores requests for which the block returns true' do - expect(subject.ignore?(request('http://foo.com:5/bar'))).to be_true + expect(subject.ignore?(request('http://foo.com:5/bar'))).to be true end it 'does not ignore requests for which the block returns false' do - expect(subject.ignore?(request('http://foo.com:6/bar'))).to be_false + expect(subject.ignore?(request('http://foo.com:6/bar'))).to be false end end end end