diff options
| -rw-r--r-- | spec/bundler/commands/config_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/commands/config_spec.rb b/spec/bundler/commands/config_spec.rb index 0aaae98ccb..e8ab32ca5d 100644 --- a/spec/bundler/commands/config_spec.rb +++ b/spec/bundler/commands/config_spec.rb @@ -605,7 +605,7 @@ RSpec.describe "setting gemfile via config" do bundle "config set gemfile foo/bar_gemfile" bundle "config unset gemfile" - bundle "config get gemfile" + bundle "config get gemfile", raise_on_error: false expect(out).to include("You have not configured a value for `gemfile`") expect(File.read(bundled_app(".bundle/config"))).not_to include("BUNDLE_GEMFILE") |
