diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-02-11 00:14:29 +0100 |
---|---|---|
committer | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-02-14 00:46:02 +0100 |
commit | 8ba4916ebc6777104027ecb0d654825ea13824a9 (patch) | |
tree | 24f103ec50c6869f08e99efdc82a140aebfd2a5d /spec/runtime/inline_spec.rb | |
parent | dac69e7b21cb05ad9df27941aab004abcb80b4ef (diff) | |
download | bundler-8ba4916ebc6777104027ecb0d654825ea13824a9.tar.gz |
Remove now unnecessary `lack_errors` matcher
Since the errors are checked on their own stream, no filtering is
needed.
Diffstat (limited to 'spec/runtime/inline_spec.rb')
-rw-r--r-- | spec/runtime/inline_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/runtime/inline_spec.rb b/spec/runtime/inline_spec.rb index 09493e0cbf..4c1cc35a4a 100644 --- a/spec/runtime/inline_spec.rb +++ b/spec/runtime/inline_spec.rb @@ -90,7 +90,7 @@ RSpec.describe "bundler/inline#gemfile" do expect(out).to include("Installing activesupport") err.gsub! %r{.*lib/sinatra/base\.rb:\d+: warning: constant ::Fixnum is deprecated$}, "" err.strip! - expect(err).to lack_errors + expect(err).to be_empty expect(exitstatus).to be_zero if exitstatus end |