Skip to content

Commit 304ab6e

Browse files
Fix Bundler daily CI
A default Bundler copy with vendored net-http is causing a Bundler spec to end up loading that copy instead of the copy of Bundler under test. This is because of vcr, but we don't really need vcr in the command that's failing, so I avoided loading it.
1 parent 66d50a4 commit 304ab6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bundler/spec/runtime/self_management_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
expect(out).to include("Bundler #{Bundler::VERSION} is running, but your lockfile was generated with #{previous_minor}. Installing Bundler #{previous_minor} and restarting using that version.")
2929

3030
# It uninstalls the older system bundler
31-
bundle "clean --force"
31+
bundle "clean --force", artifice: nil
3232
expect(out).to eq("Removing bundler (#{Bundler::VERSION})")
3333

3434
# App now uses locked version

0 commit comments

Comments
 (0)