From 5ea4df6a8fe67762b4f204e04c0134d17ce471a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 16 Dec 2022 17:33:26 +0100 Subject: [PATCH] [rubygems/rubygems] Remove annoying debug info Sometimes you want this, sometimes you don't. And when you don't, this hides other debugging puts you may have added. https://github.com/rubygems/rubygems/commit/df37582c81 --- test/rubygems/test_gem_installer.rb | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/test/rubygems/test_gem_installer.rb b/test/rubygems/test_gem_installer.rb index edcc2216bd..61609a26c9 100644 --- a/test/rubygems/test_gem_installer.rb +++ b/test/rubygems/test_gem_installer.rb @@ -1652,19 +1652,6 @@ end installer.install end assert_path_exist so - rescue StandardError - puts "-" * 78 - puts File.read File.join(@gemhome, "gems", "a-2", "Makefile") - puts "-" * 78 - - path = File.join(@gemhome, "gems", "a-2", "gem_make.out") - - if File.exist?(path) - puts File.read(path) - puts "-" * 78 - end - - raise end end