summaryrefslogtreecommitdiff
path: root/spec/runtime/inline_spec.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-02-11 00:14:29 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-02-14 00:46:02 +0100
commit8ba4916ebc6777104027ecb0d654825ea13824a9 (patch)
tree24f103ec50c6869f08e99efdc82a140aebfd2a5d /spec/runtime/inline_spec.rb
parentdac69e7b21cb05ad9df27941aab004abcb80b4ef (diff)
downloadbundler-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.rb2
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