summaryrefslogtreecommitdiff
path: root/spec/bundler
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2021-08-05 17:16:44 +0200
committergit <svn-admin@ruby-lang.org>2021-11-25 04:02:21 +0900
commitaace9cb162551f60d6ed811cc378f5156b892828 (patch)
tree4a614d1e71339f71fb75f45da6b1cde15b8977f5 /spec/bundler
parentb2b473707f0010055a8df8cc5f83905a73dda871 (diff)
[rubygems/rubygems] Fix bad instance variable name
Recent changes made a warning while running specs show up for some reason, and it revealed this error. https://github.com/rubygems/rubygems/commit/bbf55de38e
Diffstat (limited to 'spec/bundler')
-rw-r--r--spec/bundler/commands/doctor_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/commands/doctor_spec.rb b/spec/bundler/commands/doctor_spec.rb
index a59ccc540a..d62d83cc51 100644
--- a/spec/bundler/commands/doctor_spec.rb
+++ b/spec/bundler/commands/doctor_spec.rb
@@ -79,7 +79,7 @@ RSpec.describe "bundle doctor" do
it "exits with an error if home contains files that are not readable/writable" do
expect { Bundler::CLI::Doctor.new({}).run }.not_to raise_error
expect(@stdout.string).to include(
- "Broken links exist in the Bundler home. Please report them to the offending gem's upstream repo. These files are:\n - #{@unwritable_file}"
+ "Broken links exist in the Bundler home. Please report them to the offending gem's upstream repo. These files are:\n - #{@broken_symlink}"
)
expect(@stdout.string).not_to include("No issues")
end