summaryrefslogtreecommitdiff
path: root/spec/update
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/update
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/update')
-rw-r--r--spec/update/git_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/update/git_spec.rb b/spec/update/git_spec.rb
index b4cbb79434..37621b3552 100644
--- a/spec/update/git_spec.rb
+++ b/spec/update/git_spec.rb
@@ -88,7 +88,7 @@ RSpec.describe "bundle update" do
gem "foo", "1.0", :git => "#{lib_path("foo_two")}"
G
- expect(err).to lack_errors
+ expect(err).to be_empty
expect(out).to include("Fetching #{lib_path}/foo_two")
expect(out).to include("Bundle complete!")
end