From 0e889ae7fb5559a87a1178c5656de30af22ea918 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Mon, 20 Jan 2025 10:26:24 +0100 Subject: [PATCH] RDoc is no longer a default gem in Ruby 3.5 --- bundler/spec/commands/info_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundler/spec/commands/info_spec.rb b/bundler/spec/commands/info_spec.rb index 42f288a1d893..2dc06b9cd94c 100644 --- a/bundler/spec/commands/info_spec.rb +++ b/bundler/spec/commands/info_spec.rb @@ -88,8 +88,8 @@ context "given a default gem shippped in ruby", :ruby_repo do it "prints information about the default gem" do - bundle "info rdoc" - expect(out).to include("* rdoc") + bundle "info json" + expect(out).to include("* json") expect(out).to include("Default Gem: yes") end end