diff options
| author | David RodrÃguez <2887858+deivid-rodriguez@users.noreply.github.com> | 2025-09-09 19:22:13 +0200 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2025-10-15 07:15:49 +0000 |
| commit | a60b56c33d0eb40d8ad9731fe8611f401923a11a (patch) | |
| tree | ad46c4426416ef1f0004b61a59c3230d03705f78 | |
| parent | 92cbd7ec3354e652d8fcc52ad772bc4699475469 (diff) | |
[rubygems/rubygems] Use `default_cache_path` helper for brevity
https://github.com/rubygems/rubygems/commit/29a12c3d46
| -rw-r--r-- | spec/bundler/install/gemfile/git_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/install/gemfile/git_spec.rb b/spec/bundler/install/gemfile/git_spec.rb index 216548cf27..faf9383832 100644 --- a/spec/bundler/install/gemfile/git_spec.rb +++ b/spec/bundler/install/gemfile/git_spec.rb @@ -70,7 +70,7 @@ RSpec.describe "bundle install with git sources" do it "caches the git repo" do install_base_gemfile - expect(Dir["#{default_bundle_path}/cache/bundler/git/foo-1.0-*"]).to have_attributes size: 1 + expect(Dir["#{default_cache_path}/git/foo-1.0-*"]).to have_attributes size: 1 end it "does not write to cache on bundler/setup" do |
