Skip to content

Commit 51fdb7e

Browse files
committed
Fix issue with bundler 4
1 parent a1587f4 commit 51fdb7e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/support/acceptance_test.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ def refute_output_includes(command, not_expected)
6565
def assert_speedup(ratio = DEFAULT_SPEEDUP)
6666
if ENV['CI']
6767
yield
68+
assert true
6869
else
6970
app.with_timing do
7071
yield
@@ -673,7 +674,8 @@ def exec_name
673674

674675
FileUtils.cp_r "#{app.gem_home}/", bundle_path.to_s
675676

676-
app.run! "bundle install --path .bundle --local"
677+
app.run! "bundle config set path '.bundle'"
678+
app.run! "bundle install --local"
677679

678680
assert_speedup do
679681
2.times { assert_success "bundle exec rails runner ''" }

0 commit comments

Comments
 (0)