From 82d29c78fa8b05379078100b87a4e761f2636cae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Wed, 30 Oct 2019 17:48:16 +0100 Subject: Fix some realworld specs testing nothing This helper was printing nothing to the standard output, so the specs were just checking if lockfiles contained the empty string, which is obviously true. --- spec/realworld/edgecases_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/realworld/edgecases_spec.rb b/spec/realworld/edgecases_spec.rb index 6468ee7f1e..d8997fdbdf 100644 --- a/spec/realworld/edgecases_spec.rb +++ b/spec/realworld/edgecases_spec.rb @@ -15,7 +15,7 @@ RSpec.describe "real world edgecases", :realworld => true, :sometimes => true do raise "Could not find #{name} (#{requirement}) on rubygems.org!\n" \ "Found specs:\n\#{index.send(:specs).inspect}" end - "#{name} (\#{rubygem.version})" + puts "#{name} (\#{rubygem.version})" RUBY end -- cgit v1.2.1