summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <[email protected]>2025-03-05 08:25:56 +0100
committerHiroshi SHIBATA <[email protected]>2025-06-23 11:06:58 +0900
commit7c326ee72ec0623ff6b96c08d08bdf13682fade3 ()
treee89473dae7a3297e409e40a92c9787073f43ce9f
parent7c115b8633cd32def0f6b4bd4e33b4b2db864b62 (diff)
[rubygems/rubygems] Remove usage of `Bundler::SpecSet#<<`
https://.com/rubygems/rubygems/commit/b556167793
-rw-r--r--spec/bundler/resolver/basic_spec.rb2
1 files changed, 1 insertions, 1 deletions
@@ -238,7 +238,7 @@ RSpec.describe "Resolving" do
it "resolves foo only to latest - changing dependency declared case" do
# bar is locked AND a declared dependency in the Gemfile, so it will not move, and therefore
# foo can only move up to 1.4.4.
- @base << Bundler::LazySpecification.new("bar", Gem::Version.new("2.0.3"), nil)
should_conservative_resolve_and_include :, ["foo"], %w[foo-1.4.4 bar-2.0.3]
end