diff options
Diffstat (limited to 'spec/install/gemspecs_spec.rb')
-rw-r--r-- | spec/install/gemspecs_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/install/gemspecs_spec.rb b/spec/install/gemspecs_spec.rb index aa3085b0d7..58e086b4b2 100644 --- a/spec/install/gemspecs_spec.rb +++ b/spec/install/gemspecs_spec.rb @@ -15,7 +15,7 @@ describe "bundle install" do gem "yaml_spec" G bundle :install - expect(err).to be_empty + expect(err).to lack_errors end it "still installs correctly when using path" do @@ -24,7 +24,7 @@ describe "bundle install" do install_gemfile <<-G gem 'yaml_spec', :path => "#{lib_path("yaml_spec-1.0")}" G - expect(err).to eq("") + expect(err).to lack_errors end end |