summaryrefslogtreecommitdiff
path: root/test/rubygems
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2022-12-16 17:33:26 +0100
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2024-01-29 12:20:44 +0900
commit5ea4df6a8fe67762b4f204e04c0134d17ce471a2 (patch)
tree7d0267e58def70c6e8f875ecc1b9cd68ac137aee /test/rubygems
parent1991c6d7a03b9b38bb3ff58949a08271f40cbc38 (diff)
[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
Diffstat (limited to 'test/rubygems')
-rw-r--r--test/rubygems/test_gem_installer.rb13
1 files changed, 0 insertions, 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